Commit 42823f62 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by Greg Kroah-Hartman

I2C: change i2c-elektor.c driver from using pci_find_device()

Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 048c3bac
...@@ -180,11 +180,10 @@ static int __init i2c_pcfisa_init(void) ...@@ -180,11 +180,10 @@ static int __init i2c_pcfisa_init(void)
/* check to see we have memory mapped PCF8584 connected to the /* check to see we have memory mapped PCF8584 connected to the
Cypress cy82c693 PCI-ISA bridge as on UP2000 board */ Cypress cy82c693 PCI-ISA bridge as on UP2000 board */
if (base == 0) { if (base == 0) {
struct pci_dev *cy693_dev;
struct pci_dev *cy693_dev = cy693_dev = pci_get_device(PCI_VENDOR_ID_CONTAQ,
pci_find_device(PCI_VENDOR_ID_CONTAQ, PCI_DEVICE_ID_CONTAQ_82C693, NULL);
PCI_DEVICE_ID_CONTAQ_82C693, NULL);
if (cy693_dev) { if (cy693_dev) {
char config; char config;
/* yeap, we've found cypress, let's check config */ /* yeap, we've found cypress, let's check config */
...@@ -215,6 +214,7 @@ static int __init i2c_pcfisa_init(void) ...@@ -215,6 +214,7 @@ static int __init i2c_pcfisa_init(void)
printk(KERN_INFO "i2c-elektor: found API UP2000 like board, will probe PCF8584 later.\n"); printk(KERN_INFO "i2c-elektor: found API UP2000 like board, will probe PCF8584 later.\n");
} }
} }
pci_dev_put(cy693_dev);
} }
} }
#endif #endif
......
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