Staging: rtl8712: Fixed a coding sytle issue
authorAnkit Baluni <b18007@students.iitmandi.ac.in>
Wed, 29 Jul 2020 07:45:41 +0000 (13:15 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Jul 2020 12:00:25 +0000 (14:00 +0200)
Removed braces for a 'if' condition as it contain only single line &
there is no need for braces for such case according to coding style
rules.

Signed-off-by: Ankit Baluni <b18007@students.iitmandi.ac.in>
Link: https://lore.kernel.org/r/20200729074541.1972-1-b18007@students.iitmandi.ac.in
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_ioctl_linux.c

index c6f6ccd060bba2099156f0b995e55b28e5a98042..df6ae855f3c137e3f4b0d0f635f824c215adae4e 100644 (file)
@@ -238,9 +238,8 @@ static char *translate_scan(struct _adapter *padapter,
        /* parsing HT_CAP_IE */
        p = r8712_get_ie(&pnetwork->network.IEs[12], _HT_CAPABILITY_IE_,
                         &ht_ielen, pnetwork->network.IELength - 12);
-       if (p && ht_ielen > 0) {
+       if (p && ht_ielen > 0)
                ht_cap = true;
-       }
        /* Add the protocol name */
        iwe.cmd = SIOCGIWNAME;
        if (r8712_is_cckratesonly_included(pnetwork->network.rates)) {