projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4938d3f
)
[igafb] Add pci dev table for module auto loading.
author
Ben Collins
<bcollins@ubuntu.com>
Wed, 18 Oct 2006 12:50:49 +0000
(08:50 -0400)
committer
Ben Collins
<bcollins@ubuntu.com>
Wed, 18 Oct 2006 12:50:49 +0000
(08:50 -0400)
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
drivers/video/igafb.c
patch
|
blob
|
history
diff --git
a/drivers/video/igafb.c
b/drivers/video/igafb.c
index
67f384f
..
e6df492
100644
(file)
--- 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);