diff options
author | Márton Németh <nm127@freemail.hu> | 2010-01-09 23:23:58 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-01-09 23:28:52 -0800 |
commit | a9844b18502bde376284e4ad83b04fa20eb5afa5 (patch) | |
tree | 478277307f2a394ee68e9307189df9729c1a4bc5 /drivers/input/gameport/emu10k1-gp.c | |
parent | ef9a16f15dccba6630d8860a964a4adef1a4ab98 (diff) | |
download | talos-op-linux-a9844b18502bde376284e4ad83b04fa20eb5afa5.tar.gz talos-op-linux-a9844b18502bde376284e4ad83b04fa20eb5afa5.zip |
Input: make PCI device ids constant
The id_table field of the struct pci_driver is constant in <linux/pci.h>
so it makes sense to mark initialization data also constant.
Signed-off-by: Márton Németh <nm127@freemail.hu>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/gameport/emu10k1-gp.c')
-rw-r--r-- | drivers/input/gameport/emu10k1-gp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/gameport/emu10k1-gp.c b/drivers/input/gameport/emu10k1-gp.c index b04930f7ea7d..7392992da424 100644 --- a/drivers/input/gameport/emu10k1-gp.c +++ b/drivers/input/gameport/emu10k1-gp.c @@ -46,7 +46,7 @@ struct emu { int size; }; -static struct pci_device_id emu_tbl[] = { +static const struct pci_device_id emu_tbl[] = { { 0x1102, 0x7002, PCI_ANY_ID, PCI_ANY_ID }, /* SB Live gameport */ { 0x1102, 0x7003, PCI_ANY_ID, PCI_ANY_ID }, /* Audigy gameport */ |