summaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorAlan2007-01-31 18:00:28 +0100
committerDavid Woodhouse2007-01-31 18:26:02 +0100
commitc033a7e3d593554ba5e8a0e63bf7e5874dc3e92f (patch)
treeb5be98ed6945a2620d6250505e49ea662d2229d1 /drivers/mtd
parent[MTD] [NAND] Remove debugging cruft from CAFÉ NAND driver. (diff)
downloadkernel-qcow2-linux-c033a7e3d593554ba5e8a0e63bf7e5874dc3e92f.tar.gz
kernel-qcow2-linux-c033a7e3d593554ba5e8a0e63bf7e5874dc3e92f.tar.xz
kernel-qcow2-linux-c033a7e3d593554ba5e8a0e63bf7e5874dc3e92f.zip
[MTD] ck804xrom: fix a pci_find_device
Going over the bugs and warnings I found this one left over. The other changes have already been correctly done for this driver but the actual switch to pci_get_device that they assume has not. Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/maps/ck804xrom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/ck804xrom.c b/drivers/mtd/maps/ck804xrom.c
index 238d42e88ec5..68ed02ecb2ec 100644
--- a/drivers/mtd/maps/ck804xrom.c
+++ b/drivers/mtd/maps/ck804xrom.c
@@ -327,7 +327,7 @@ static int __init init_ck804xrom(void)
pdev = NULL;
for(id = ck804xrom_pci_tbl; id->vendor; id++) {
- pdev = pci_find_device(id->vendor, id->device, NULL);
+ pdev = pci_get_device(id->vendor, id->device, NULL);
if (pdev)
break;
}