mirror of https://gitee.com/openkylin/linux.git
staging: ks7010: avoid CamelCase: FhParms_t fields
Replace CamelCase struct field names with underscores to comply with the standard kernel coding style. Changed: - dwellTime - hopSet - hopPattern - hopIndex Signed-off-by: Janusz Lisiecki <janusz.lisiecki@gmail.com> Reviewed-by: Tobin C. Harding <me@tobin.cc> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
93270634a3
commit
5e1cdda0e2
|
@ -239,10 +239,10 @@ struct rate_set8_t {
|
|||
} __packed;
|
||||
|
||||
struct FhParms_t {
|
||||
u16 dwellTime;
|
||||
u8 hopSet;
|
||||
u8 hopPattern;
|
||||
u8 hopIndex;
|
||||
u16 dwell_time;
|
||||
u8 hop_set;
|
||||
u8 hop_pattern;
|
||||
u8 hop_index;
|
||||
} __packed;
|
||||
|
||||
struct DsParms_t {
|
||||
|
|
Loading…
Reference in New Issue