Commit 1a08bc43 authored by Tony Cho's avatar Tony Cho Committed by Greg Kroah-Hartman

staging: wilc1000: remove typedef from the tstrInterfaceInfo

This patch removes typedef from the tstrInterfaceInfo and renames it to
the wilc_vif.
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f61c5aff
...@@ -148,12 +148,12 @@ typedef struct { ...@@ -148,12 +148,12 @@ typedef struct {
} struct_frame_reg; } struct_frame_reg;
typedef struct { struct wilc_vif {
u8 aSrcAddress[ETH_ALEN]; u8 aSrcAddress[ETH_ALEN];
u8 aBSSID[ETH_ALEN]; u8 aBSSID[ETH_ALEN];
struct host_if_drv *drvHandler; struct host_if_drv *drvHandler;
struct net_device *wilc_netdev; struct net_device *wilc_netdev;
} tstrInterfaceInfo; };
struct wilc { struct wilc {
int mac_status; int mac_status;
...@@ -163,7 +163,7 @@ struct wilc { ...@@ -163,7 +163,7 @@ struct wilc {
#endif #endif
int close; int close;
u8 u8NoIfcs; u8 u8NoIfcs;
tstrInterfaceInfo strInterfaceInfo[NUM_CONCURRENT_IFC]; struct wilc_vif strInterfaceInfo[NUM_CONCURRENT_IFC];
u8 open_ifcs; u8 open_ifcs;
struct semaphore txq_add_to_head_cs; struct semaphore txq_add_to_head_cs;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment