Commit c601391b authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by Greg Kroah-Hartman

I2C: convert scx200_acb driver to not use pci_find_device

Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 42823f62
...@@ -503,6 +503,12 @@ static int __init scx200_acb_create(int base, int index) ...@@ -503,6 +503,12 @@ static int __init scx200_acb_create(int base, int index)
return rc; 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) static int __init scx200_acb_init(void)
{ {
int i; int i;
...@@ -511,12 +517,7 @@ static int __init scx200_acb_init(void) ...@@ -511,12 +517,7 @@ static int __init scx200_acb_init(void)
pr_debug(NAME ": NatSemi SCx200 ACCESS.bus Driver\n"); pr_debug(NAME ": NatSemi SCx200 ACCESS.bus Driver\n");
/* Verify that this really is a SCx200 processor */ /* Verify that this really is a SCx200 processor */
if (pci_find_device(PCI_VENDOR_ID_NS, if (pci_dev_present(scx200) == 0)
PCI_DEVICE_ID_NS_SCx200_BRIDGE,
NULL) == NULL
&& pci_find_device(PCI_VENDOR_ID_NS,
PCI_DEVICE_ID_NS_SC1100_BRIDGE,
NULL) == NULL)
return -ENODEV; return -ENODEV;
rc = -ENXIO; rc = -ENXIO;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment