diff options
author | Betty Dall <betty.dall@hp.com> | 2012-07-19 15:34:19 -0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2012-07-19 14:19:08 -0400 |
commit | f3331f88a4b97530b7acd3112902524d9dc0688c (patch) | |
tree | 2f1a891c850e1a13833556643629ad7b2328e9f4 | |
parent | 1fb9fed6d48960fec3ad8c97fed9aa16c9557091 (diff) |
IB/qib: Fix an incorrect log message
There is a cut-and-paste typo in the function qib_pci_slot_reset()
where it prints that the "link_reset" function is called rather than
the "slot_reset" function. This makes the message misleading.
Signed-off-by: Betty Dall <betty.dall@hp.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
-rw-r--r-- | drivers/infiniband/hw/qib/qib_pcie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/qib/qib_pcie.c b/drivers/infiniband/hw/qib/qib_pcie.c index 790646ef5106..4f9d91823f15 100644 --- a/drivers/infiniband/hw/qib/qib_pcie.c +++ b/drivers/infiniband/hw/qib/qib_pcie.c | |||
@@ -725,7 +725,7 @@ qib_pci_mmio_enabled(struct pci_dev *pdev) | |||
725 | static pci_ers_result_t | 725 | static pci_ers_result_t |
726 | qib_pci_slot_reset(struct pci_dev *pdev) | 726 | qib_pci_slot_reset(struct pci_dev *pdev) |
727 | { | 727 | { |
728 | qib_devinfo(pdev, "QIB link_reset function called, ignored\n"); | 728 | qib_devinfo(pdev, "QIB slot_reset function called, ignored\n"); |
729 | return PCI_ERS_RESULT_CAN_RECOVER; | 729 | return PCI_ERS_RESULT_CAN_RECOVER; |
730 | } | 730 | } |
731 | 731 | ||