aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2010-02-08 05:07:15 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-03-02 17:43:21 -0500
commitb2a3dbc3ed401828c4de0f08d08d96d0f5ea5b0b (patch)
tree395bb1aa8634f0d77f558e73a72bd60a11c6f15f
parente8c65d143a9903cb553c0d80c819428c5b839a02 (diff)
nozomi: Tidy up the PCI table
Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/char/nozomi.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/char/nozomi.c b/drivers/char/nozomi.c
index fac9157a0ec0..584910ff725e 100644
--- a/drivers/char/nozomi.c
+++ b/drivers/char/nozomi.c
@@ -136,10 +136,6 @@ static int debug;
136#define RECEIVE_BUF_MAX 4 136#define RECEIVE_BUF_MAX 4
137 137
138 138
139/* Define all types of vendors and devices to support */
140#define VENDOR1 0x1931 /* Vendor Option */
141#define DEVICE1 0x000c /* HSDPA card */
142
143#define R_IIR 0x0000 /* Interrupt Identity Register */ 139#define R_IIR 0x0000 /* Interrupt Identity Register */
144#define R_FCR 0x0000 /* Flow Control Register */ 140#define R_FCR 0x0000 /* Flow Control Register */
145#define R_IER 0x0004 /* Interrupt Enable Register */ 141#define R_IER 0x0004 /* Interrupt Enable Register */
@@ -407,7 +403,7 @@ struct buffer {
407 403
408/* Global variables */ 404/* Global variables */
409static const struct pci_device_id nozomi_pci_tbl[] __devinitconst = { 405static const struct pci_device_id nozomi_pci_tbl[] __devinitconst = {
410 {PCI_DEVICE(VENDOR1, DEVICE1)}, 406 {PCI_DEVICE(0x1931, 0x000c)}, /* Nozomi HSDPA */
411 {}, 407 {},
412}; 408};
413 409