From: Ben Collins Date: Wed, 18 Oct 2006 12:50:49 +0000 (-0400) Subject: [igafb] Add pci dev table for module auto loading. X-Git-Tag: accepted/tizen/common/20141203.182822~33357^2~47^2~89^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b023429ca30fc18b17a7b3e279b55bd652e9a989;p=platform%2Fkernel%2Flinux-arm64.git [igafb] Add pci dev table for module auto loading. Signed-off-by: Ben Collins --- diff --git a/drivers/video/igafb.c b/drivers/video/igafb.c index 67f384f..e6df492c 100644 --- a/drivers/video/igafb.c +++ b/drivers/video/igafb.c @@ -573,3 +573,10 @@ int __init igafb_setup(char *options) module_init(igafb_init); MODULE_LICENSE("GPL"); +static struct pci_device_id igafb_pci_tbl[] __devinitdata = { + { PCI_VENDOR_ID_INTERG, PCI_DEVICE_ID_INTERG_1682, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, + { } +}; + +MODULE_DEVICE_TABLE(pci, igafb_pci_tbl);