staging: rtl8192e: reformat ba_record struct
authorWilliam Durand <will+git@drnd.me>
Fri, 19 Feb 2021 23:11:28 +0000 (23:11 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Mar 2021 08:25:28 +0000 (09:25 +0100)
This change uses a space instead of tabs between the type and name of
each member of the struct.

Signed-off-by: William Durand <will+git@drnd.me>
Link: https://lore.kernel.org/r/20210219231128.27119-8-will+git@drnd.me
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_BA.h

index 1d2a11b3ec67a8bbc6777817cb3d9ccccd642ee2..8a35d7a3eee10fe968f38a6dd892bb628d3c9df9 100644 (file)
@@ -49,11 +49,11 @@ union delba_param_set {
 };
 
 struct ba_record {
-       struct timer_list               timer;
-       u8                              b_valid;
-       u8                              dialog_token;
+       struct timer_list timer;
+       u8 b_valid;
+       u8 dialog_token;
        union ba_param_set ba_param_set;
-       u16                             ba_timeout_value;
+       u16 ba_timeout_value;
        union sequence_control ba_start_seq_ctrl;
 };