From: Alexander Shishkin Date: Fri, 4 May 2012 13:47:17 +0000 (+0300) Subject: usb: gadget: ci13xxx_pci: add langwell/penwell pci ids X-Git-Tag: v3.5-rc1~149^2~120 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d56ba3205fe2e61264ef41f29cd90a666df032e4;p=platform%2Fkernel%2Flinux-exynos.git usb: gadget: ci13xxx_pci: add langwell/penwell pci ids Add pci ids for ChipIdea UDC as found in langwell/penwell SoCs. Signed-off-by: Alexander Shishkin Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/gadget/ci13xxx_pci.c b/drivers/usb/gadget/ci13xxx_pci.c index c890e1c..ef5da49 100644 --- a/drivers/usb/gadget/ci13xxx_pci.c +++ b/drivers/usb/gadget/ci13xxx_pci.c @@ -142,6 +142,8 @@ static void __devexit ci13xxx_pci_remove(struct pci_dev *pdev) static DEFINE_PCI_DEVICE_TABLE(ci13xxx_pci_id_table) = { { PCI_DEVICE(0x153F, 0x1004) }, { PCI_DEVICE(0x153F, 0x1006) }, + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0811) }, + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0829) }, { 0, 0, 0, 0, 0, 0, 0 /* end: all zeroes */ } }; MODULE_DEVICE_TABLE(pci, ci13xxx_pci_id_table);