diff options
author | Dave Jones <davej@redhat.com> | 2013-09-05 06:33:09 +0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-09-11 01:48:16 +0400 |
commit | 6f8f8e4d313a47e3f8aa7eeb5201d1b02ffa0951 (patch) | |
tree | 8fd7bc9d21623d182bc5847516ddad973768b170 /drivers/scsi/aic7xxx/aic7xxx_pci.c | |
parent | e481cce8b0c1f0a685f50e19a8016f24031865a0 (diff) | |
download | linux-6f8f8e4d313a47e3f8aa7eeb5201d1b02ffa0951.tar.xz |
[SCSI] aic7xxx: fix swapped arguments in ahc_find_pci_device
The prototype for ahc_9005_subdevinfo_valid shows that the caller has the
arguments in the wrong order.
637 ahc_9005_subdevinfo_valid(uint16_t device, uint16_t vendor,
638 uint16_t subdevice, uint16_t subvendor)
Signed-off-by: Dave Jones <davej@fedoraproject.org>
Acked-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/aic7xxx/aic7xxx_pci.c')
-rw-r--r-- | drivers/scsi/aic7xxx/aic7xxx_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/aic7xxx/aic7xxx_pci.c b/drivers/scsi/aic7xxx/aic7xxx_pci.c index 6917b4f5ac9e..22d5a949ec83 100644 --- a/drivers/scsi/aic7xxx/aic7xxx_pci.c +++ b/drivers/scsi/aic7xxx/aic7xxx_pci.c @@ -692,7 +692,7 @@ ahc_find_pci_device(ahc_dev_softc_t pci) * ID as valid. */ if (ahc_get_pci_function(pci) > 0 - && ahc_9005_subdevinfo_valid(vendor, device, subvendor, subdevice) + && ahc_9005_subdevinfo_valid(device, vendor, subdevice, subvendor) && SUBID_9005_MFUNCENB(subdevice) == 0) return (NULL); |