FDomain driver PCI probe fix

Martin Mares (mj@ucw.cz)
Sat, 18 Apr 1998 00:50:37 +0200


Hi,

This patch fixes a silly bug in FDomain SCSI driver PCI probing...

Have a nice fortnight

-- 
Martin `MJ' Mares   <mj@ucw.cz>   http://atrey.karlin.mff.cuni.cz/~mj/
Faculty of Math and Physics, Charles University, Prague, Czech Rep., Earth
"RAM = Rarely Adequate Memory"

--- ./drivers/scsi/fdomain.c.mj Sat Apr 18 00:47:16 1998 +++ ./drivers/scsi/fdomain.c Sat Apr 18 00:47:41 1998 @@ -774,7 +774,7 @@ PCI_DEVICE_ID_FD_36C70 ); #endif - if ((pdev = pci_find_device(PCI_VENDOR_ID, PCI_DEVICE_ID, pdev)) == NULL) + if ((pdev = pci_find_device(PCI_VENDOR_ID_FD, PCI_DEVICE_ID_FD_36C70, pdev)) == NULL) return 0; #if DEBUG_DETECT

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu