summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6655/device.h
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2015-09-12 21:10:30 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-09-14 18:50:45 +0300
commit319755a72226e8c433077b7839aa6064080917fc (patch)
tree04803f740a6130e17b9774f126b40606b82f5eae /drivers/staging/vt6655/device.h
parente77610a94c1fe0402979f58bee6933ffe18b15e3 (diff)
downloadlinux-319755a72226e8c433077b7839aa6064080917fc.tar.xz
staging: vt6655: Remove typedef struct __chip_info_tbl
Only two values that are assigned from this table. DEVICE_FLAGS_TX_ALIGN and the value of io_size which is used as the size of ioremap which is 256. Remove all variables, DEVICE_FLAGS_TX_ALIGN check, apply io_size value and chip_info_table. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/device.h')
-rw-r--r--drivers/staging/vt6655/device.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
index d1917d04af30..be42e4472c84 100644
--- a/drivers/staging/vt6655/device.h
+++ b/drivers/staging/vt6655/device.h
@@ -157,14 +157,6 @@
#define PK_TYPE_11GB 2
#define PK_TYPE_11GA 3
-typedef struct __chip_info_tbl {
- CHIP_TYPE chip_id;
- char *name;
- int io_size;
- int nTxQueue;
- u32 flags;
-} CHIP_INFO, *PCHIP_INFO;
-
typedef enum {
OWNED_BY_HOST = 0,
OWNED_BY_NIC = 1
@@ -235,12 +227,9 @@ struct vnt_private {
unsigned char *tx1_bufs;
unsigned char *tx_beacon_bufs;
- CHIP_TYPE chip_id;
-
void __iomem *PortOffset;
u32 memaddr;
u32 ioaddr;
- u32 io_size;
unsigned char byRevId;
unsigned char byRxMode;
@@ -249,7 +238,6 @@ struct vnt_private {
spinlock_t lock;
- int nTxQueues;
volatile int iTDUsed[TYPE_MAXTD];
struct vnt_tx_desc *apCurrTD[TYPE_MAXTD];