Commit 8b4e7034 authored by Himadri Pandya's avatar Himadri Pandya Committed by Greg Kroah-Hartman

staging: rtl8723bs: include: remove typedef for struct pno_ssid

Remove typedef for struct pno_ssid as The Linux kernel coding style
guidelines discourage the use of typedefs for struct types.
Signed-off-by: default avatarHimadri Pandya <himadri18.07@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 319aa7e5
...@@ -170,13 +170,13 @@ struct pno_nlo_info ...@@ -170,13 +170,13 @@ struct pno_nlo_info
u8 ssid_channel_info[MAX_PNO_LIST_COUNT]; /* channel information */ u8 ssid_channel_info[MAX_PNO_LIST_COUNT]; /* channel information */
}; };
typedef struct pno_ssid { struct pno_ssid {
u32 SSID_len; u32 SSID_len;
u8 SSID[32]; u8 SSID[32];
} pno_ssid_t; };
typedef struct pno_ssid_list { typedef struct pno_ssid_list {
pno_ssid_t node[MAX_PNO_LIST_COUNT]; struct pno_ssid node[MAX_PNO_LIST_COUNT];
}pno_ssid_list_t; }pno_ssid_list_t;
typedef struct pno_scan_channel_info typedef struct pno_scan_channel_info
......
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