Commit 73735e49 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: remove typedef from tstrFoundNetworkInfo

This patch removes typedef from the struct tstrFoundNetworkInfo and
rename it to found_net_info.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent db9f1b12
......@@ -155,10 +155,10 @@ typedef enum {
HT_ENABLE = BIT(18),
} tenuCfgParam;
typedef struct {
struct found_net_info {
u8 au8bssid[6];
s8 s8rssi;
} tstrFoundNetworkInfo;
};
typedef enum {SCAN_EVENT_NETWORK_FOUND = 0,
SCAN_EVENT_DONE = 1,
......@@ -232,7 +232,7 @@ struct user_scan_req {
void *u32UserScanPvoid;
u32 u32RcvdChCount;
tstrFoundNetworkInfo astrFoundNetworkInfo[MAX_NUM_SCANNED_NETWORKS];
struct found_net_info astrFoundNetworkInfo[MAX_NUM_SCANNED_NETWORKS];
};
struct user_conn_req {
......
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