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: Himadri Pandya <himadri18.07@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Himadri Pandya 2019-03-21 23:44:02 +05:30 committed by Greg Kroah-Hartman
parent 319aa7e516
commit 8b4e7034fd
1 changed files with 3 additions and 3 deletions

View File

@ -170,13 +170,13 @@ struct pno_nlo_info
u8 ssid_channel_info[MAX_PNO_LIST_COUNT]; /* channel information */
};
typedef struct pno_ssid {
struct pno_ssid {
u32 SSID_len;
u8 SSID[32];
} pno_ssid_t;
};
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;
typedef struct pno_scan_channel_info