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

staging: rtl8723bs: include: remove typedef for struct pno_ssid_list

Remove typedef from struct pno_ssid_list 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 8b4e7034
......@@ -175,9 +175,9 @@ struct pno_ssid {
u8 SSID[32];
};
typedef struct pno_ssid_list {
struct pno_ssid_list {
struct pno_ssid node[MAX_PNO_LIST_COUNT];
}pno_ssid_list_t;
};
typedef struct pno_scan_channel_info
{
......@@ -281,7 +281,7 @@ struct pwrctrl_priv
u8 pno_inited;
struct pno_nlo_info *pnlo_info;
pno_scan_info_t *pscan_info;
pno_ssid_list_t *pno_ssid_list;
struct pno_ssid_list *pno_ssid_list;
#endif
u32 wowlan_pattern_context[8][5];
u64 wowlan_fw_iv;
......
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