From: Vojtech P. <vo...@us...> - 2002-01-03 14:54:03
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/input In directory usw-pr-cvs1:/tmp/cvs-serv17691 Modified Files: emu10k1-gp.c Log Message: Added Audigy support. Index: emu10k1-gp.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/input/emu10k1-gp.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- emu10k1-gp.c 2001/09/25 10:12:07 1.6 +++ emu10k1-gp.c 2002/01/03 14:54:00 1.7 @@ -5,7 +5,7 @@ */ /* - * EMU10k1 - SB Live! - gameport driver for Linux + * EMU10k1 - SB Live / Audigy - gameport driver for Linux */ /* @@ -51,7 +51,8 @@ }; static struct pci_device_id emu_tbl[] __devinitdata = { - { 0x1102, 0x7002, PCI_ANY_ID, PCI_ANY_ID }, /* SB Live! gameport */ + { 0x1102, 0x7002, PCI_ANY_ID, PCI_ANY_ID }, /* SB Live gameport */ + { 0x1102, 0x7003, PCI_ANY_ID, PCI_ANY_ID }, /* Audigy gameport */ { 0, } }; |