diff options
author | Chuck Short <zulcss@gmail.com> | 2006-07-10 04:43:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-10 13:24:13 -0700 |
commit | 7691030bc9732f7d535522dda78cfdd36716def1 (patch) | |
tree | 9d6379f09bc50dd7c806fce5b544e32249575914 /drivers/char/specialix.c | |
parent | eb0e71c7f388bfcb3f74897f23d0cf09310fc05b (diff) | |
download | kernel_samsung_tuna-7691030bc9732f7d535522dda78cfdd36716def1.zip kernel_samsung_tuna-7691030bc9732f7d535522dda78cfdd36716def1.tar.gz kernel_samsung_tuna-7691030bc9732f7d535522dda78cfdd36716def1.tar.bz2 |
[PATCH] Add Specialix IO8+ card support hotplug support
Patch Description:
Add "Specialix IO8+ card support" hotplug support
patch location:
http://www.kernel.org/git/?p=linux/kernel/git/bcollins/ubuntu-dapper.git;a=commitdiff;h=d795cfc591bb44f6b3d86d8f054a227cecb44bb4
[akpm@osdl.org: cleanup]
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Chuck Short <zulcss@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/specialix.c')
-rw-r--r-- | drivers/char/specialix.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/char/specialix.c b/drivers/char/specialix.c index cb28592..a1d303f9 100644 --- a/drivers/char/specialix.c +++ b/drivers/char/specialix.c @@ -2584,6 +2584,12 @@ static void __exit specialix_exit_module(void) func_exit(); } +static struct pci_device_id specialx_pci_tbl[] __devinitdata = { + { PCI_DEVICE(PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_IO8) }, + { } +}; +MODULE_DEVICE_TABLE(pci, specialx_pci_tbl); + module_init(specialix_init_module); module_exit(specialix_exit_module); |