diff options
author | Scott Matheina <scott@matheina.com> | 2017-01-11 21:38:33 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-01-16 18:10:25 +0100 |
commit | 7a8c48a262274dcfd384eba56e6372d368bc5a62 (patch) | |
tree | e4358e6e276ed21fc51ace183fee1c21225eed88 /drivers | |
parent | 045cb1c7b8adfc7ca369c5c66bf961c2c7f80f34 (diff) | |
download | lwn-7a8c48a262274dcfd384eba56e6372d368bc5a62.tar.gz lwn-7a8c48a262274dcfd384eba56e6372d368bc5a62.zip |
staging:wilc1000:host_interface.c Added braces {} on else statemement
Fixes checkpatch warning: braces {} should be used on all arms of
this statement
Signed-off-by: Scott Matheina <scott@matheina.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/wilc1000/host_interface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index b00ea75524e4..c307ccef790e 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -3998,8 +3998,9 @@ static void *host_int_ParseJoinBssParam(struct network_info *ptstrNetworkInfo) pNewJoinBssParam->rsn_found = true; index += pu8IEs[index + 1] + 2; continue; - } else + } else { index += pu8IEs[index + 1] + 2; + } } } |