diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-11 18:46:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-11 18:46:08 -0400 |
commit | 99f9f3d49cbc7d944476f6fde53a77ec789ab2aa (patch) | |
tree | 9b6fdfb39ca8a500e458dbd87dc6e1985d394564 /drivers/infiniband/hw/mthca | |
parent | 22353f35c895acb7a8ca27ebdc6397c993b4213e (diff) | |
parent | a4cd7ed86ff511aebcc97675937039f2321d6987 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband:
IB/mlx4: Make sure RQ allocation is always valid
RDMA/cma: Fix initialization of next_port
IB/mlx4: Fix zeroing of rnr_retry value in ib_modify_qp()
mlx4_core: Don't set MTT address in dMPT entries with PA set
mlx4_core: Check firmware command interface revision
IB/mthca, mlx4_core: Fix typo in comment
mlx4_core: Free catastrophic error MSI-X interrupt with correct dev_id
mlx4_core: Initialize ctx_list and ctx_lock earlier
mlx4_core: Fix CQ context layout
Diffstat (limited to 'drivers/infiniband/hw/mthca')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_cmd.c b/drivers/infiniband/hw/mthca/mthca_cmd.c index 38102520ffb3..f40558d76475 100644 --- a/drivers/infiniband/hw/mthca/mthca_cmd.c +++ b/drivers/infiniband/hw/mthca/mthca_cmd.c | |||
@@ -772,7 +772,7 @@ int mthca_QUERY_FW(struct mthca_dev *dev, u8 *status) | |||
772 | 772 | ||
773 | MTHCA_GET(dev->fw_ver, outbox, QUERY_FW_VER_OFFSET); | 773 | MTHCA_GET(dev->fw_ver, outbox, QUERY_FW_VER_OFFSET); |
774 | /* | 774 | /* |
775 | * FW subminor version is at more signifant bits than minor | 775 | * FW subminor version is at more significant bits than minor |
776 | * version, so swap here. | 776 | * version, so swap here. |
777 | */ | 777 | */ |
778 | dev->fw_ver = (dev->fw_ver & 0xffff00000000ull) | | 778 | dev->fw_ver = (dev->fw_ver & 0xffff00000000ull) | |