Commit 41500f45 authored by Sumitra Sharma's avatar Sumitra Sharma Committed by Greg Kroah-Hartman

staging: rtl8192e: Add blank lines after declarations

Add blank lines after declarations to adhere to the Linux kernel
coding-style. Check reported by checkpatch.pl

"CHECK: Please use a blank line after function/struct/union/enum
declarations"
Signed-off-by: default avatarSumitra Sharma <sumitraartsy@gmail.com>
Link: https://lore.kernel.org/r/20230405063003.GA218972@sumitra.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 85f76d93
...@@ -967,6 +967,7 @@ static inline const char *eap_get_type(int type) ...@@ -967,6 +967,7 @@ static inline const char *eap_get_type(int type)
return ((u32)type >= ARRAY_SIZE(eap_types)) ? "Unknown" : return ((u32)type >= ARRAY_SIZE(eap_types)) ? "Unknown" :
eap_types[type]; eap_types[type];
} }
static inline u8 Frame_QoSTID(u8 *buf) static inline u8 Frame_QoSTID(u8 *buf)
{ {
struct rtllib_hdr_3addr *hdr; struct rtllib_hdr_3addr *hdr;
...@@ -1199,6 +1200,7 @@ struct rx_reorder_entry { ...@@ -1199,6 +1200,7 @@ struct rx_reorder_entry {
u16 SeqNum; u16 SeqNum;
struct rtllib_rxb *prxb; struct rtllib_rxb *prxb;
}; };
enum fsync_state { enum fsync_state {
Default_Fsync, Default_Fsync,
HW_Fsync, HW_Fsync,
...@@ -1325,6 +1327,7 @@ struct sw_cam_table { ...@@ -1325,6 +1327,7 @@ struct sw_cam_table {
u8 key_index; u8 key_index;
}; };
#define TOTAL_CAM_ENTRY 32 #define TOTAL_CAM_ENTRY 32
struct rate_adaptive { struct rate_adaptive {
u8 rate_adaptive_disabled; u8 rate_adaptive_disabled;
......
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