orinoco: address checkpatch typedef warning

Just sprinkle the necessary structs around...

Signed-off-by: David Kilroy <kilroyd@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
David Kilroy
2008-08-21 23:27:57 +01:00
committed by John W. Linville
parent 6eecad7786
commit 3056c40426
2 changed files with 10 additions and 9 deletions

View File

@@ -36,11 +36,11 @@ typedef enum {
FIRMWARE_TYPE_SYMBOL
} fwtype_t;
typedef struct {
struct bss_element {
union hermes_scan_info bss;
unsigned long last_scanned;
struct list_head list;
} bss_element;
};
struct orinoco_private {
void *card; /* Pointer to card dependent structure */
@@ -117,7 +117,7 @@ struct orinoco_private {
/* Scanning support */
struct list_head bss_list;
struct list_head bss_free_list;
bss_element *bss_data;
struct bss_element *bss_data;
int scan_inprogress; /* Scan pending... */
u32 scan_mode; /* Type of scan done */