OSDN Git Service

staging: wilc1000: Add space between the braces
authorChandra S Gorentla <csgorentla@gmail.com>
Sat, 8 Aug 2015 12:11:33 +0000 (17:41 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 8 Aug 2015 22:22:11 +0000 (15:22 -0700)
Inserted space between nested braces.  This fixes the checkpatch.pl
error - space required after that close brace '}'.

Signed-off-by: Chandra S Gorentla <csgorentla@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c

index 060288a..3d5210b 100644 (file)
@@ -3332,7 +3332,7 @@ static int  WILC_WFI_add_station(struct wiphy *wiphy, struct net_device *dev,
 {
        s32 s32Error = WILC_SUCCESS;
        struct WILC_WFI_priv *priv;
-       tstrWILC_AddStaParam strStaParams = {{0}};
+       tstrWILC_AddStaParam strStaParams = { {0} };
        perInterface_wlan_t *nic;
 
 
@@ -3463,7 +3463,7 @@ static int WILC_WFI_change_station(struct wiphy *wiphy, struct net_device *dev,
 {
        s32 s32Error = WILC_SUCCESS;
        struct WILC_WFI_priv *priv;
-       tstrWILC_AddStaParam strStaParams = {{0}};
+       tstrWILC_AddStaParam strStaParams = { {0} };
        perInterface_wlan_t *nic;