aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorMaxim Levitsky <maximlevitsky@gmail.com>2010-02-26 16:10:32 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2010-02-26 16:29:35 -0500
commitd4080cb32ee3d2ed18aa69ffde6010524bd686cd (patch)
treee79d86ac4eb1f23486557351d4fca6241d5eddee /drivers/mtd
parent133fa8c7d70d16b07db3a3d87ea18291db8f8ebf (diff)
mtd: r852 fix pci ID
The PCI_DEVICE_ID_RICOH_R5C852 was missed in the edited commit, and on second thought I just open code it. This fixes compile error. Signed-off-by: Maxim Levitsky <maximlevitsky@gmail.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/nand/r852.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/r852.c b/drivers/mtd/nand/r852.c
index 7a616a926ee9..218a42dadff1 100644
--- a/drivers/mtd/nand/r852.c
+++ b/drivers/mtd/nand/r852.c
@@ -1083,7 +1083,7 @@ int r852_resume(struct device *device)
1083 1083
1084static const struct pci_device_id r852_pci_id_tbl[] = { 1084static const struct pci_device_id r852_pci_id_tbl[] = {
1085 1085
1086 { PCI_VDEVICE(RICOH, PCI_DEVICE_ID_RICOH_R5C852), }, 1086 { PCI_VDEVICE(RICOH, 0x0852), },
1087 { }, 1087 { },
1088}; 1088};
1089 1089