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:
parent
319aa7e516
commit
8b4e7034fd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue