ChangeSet 1.1939.9.4, 2004/09/29 11:03:48-07:00, greg@kroah.com I2C: convert scx200_acb driver to not use pci_find_device Signed-off-by: Greg Kroah-Hartman drivers/i2c/busses/scx200_acb.c | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff -Nru a/drivers/i2c/busses/scx200_acb.c b/drivers/i2c/busses/scx200_acb.c --- a/drivers/i2c/busses/scx200_acb.c 2004-10-19 16:54:40 -07:00 +++ b/drivers/i2c/busses/scx200_acb.c 2004-10-19 16:54:40 -07:00 @@ -503,6 +503,12 @@ return rc; } +static struct pci_device_id scx200[] = { + { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SCx200_BRIDGE) }, + { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SC1100_BRIDGE) }, + { }, +}; + static int __init scx200_acb_init(void) { int i; @@ -511,12 +517,7 @@ pr_debug(NAME ": NatSemi SCx200 ACCESS.bus Driver\n"); /* Verify that this really is a SCx200 processor */ - if (pci_find_device(PCI_VENDOR_ID_NS, - PCI_DEVICE_ID_NS_SCx200_BRIDGE, - NULL) == NULL - && pci_find_device(PCI_VENDOR_ID_NS, - PCI_DEVICE_ID_NS_SC1100_BRIDGE, - NULL) == NULL) + if (pci_dev_present(scx200) == 0) return -ENODEV; rc = -ENXIO;