orinoco: Remove unused variable rx_data

Probably something leftover from experimentation with tasklets. Now the
structure declaration orinoco_rx_data can be relocated to orinoco.c

Signed-off-by: David Kilroy <kilroyd@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
David Kilroy
2009-01-07 00:43:54 +00:00
committed by John W. Linville
parent d1c3a37cee
commit 47166791b7
2 changed files with 6 additions and 9 deletions

View File

@@ -235,6 +235,12 @@ struct hermes_rx_descriptor {
__le16 data_len; __le16 data_len;
} __attribute__ ((packed)); } __attribute__ ((packed));
struct orinoco_rx_data {
struct hermes_rx_descriptor *desc;
struct sk_buff *skb;
struct list_head list;
};
/********************************************************************/ /********************************************************************/
/* Function prototypes */ /* Function prototypes */
/********************************************************************/ /********************************************************************/

View File

@@ -59,14 +59,6 @@ struct xbss_element {
struct list_head list; struct list_head list;
}; };
struct hermes_rx_descriptor;
struct orinoco_rx_data {
struct hermes_rx_descriptor *desc;
struct sk_buff *skb;
struct list_head list;
};
struct firmware; struct firmware;
struct orinoco_private { struct orinoco_private {
@@ -83,7 +75,6 @@ struct orinoco_private {
/* Interrupt tasklets */ /* Interrupt tasklets */
struct tasklet_struct rx_tasklet; struct tasklet_struct rx_tasklet;
struct list_head rx_list; struct list_head rx_list;
struct orinoco_rx_data *rx_data;
/* driver state */ /* driver state */
int open; int open;