[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070131170028.3a9bef3e@localhost.localdomain>
Date: Wed, 31 Jan 2007 17:00:28 +0000
From: Alan <alan@...rguk.ukuu.org.uk>
To: akpm@...l.org, linux-kernel@...r.kernel.org
Subject: [PATCH]: mtd - 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@...hat.com>
diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.20-rc6-mm3/drivers/mtd/maps/ck804xrom.c linux-2.6.20-rc6-mm3/drivers/mtd/maps/ck804xrom.c
--- linux.vanilla-2.6.20-rc6-mm3/drivers/mtd/maps/ck804xrom.c 2007-01-31 14:19:55.000000000 +0000
+++ linux-2.6.20-rc6-mm3/drivers/mtd/maps/ck804xrom.c 2007-01-31 15:17:52.000000000 +0000
@@ -327,7 +327,7 @@
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;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists