]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wlan-ng: remove unnecessary parentheses
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Wed, 2 Nov 2016 18:47:48 +0000 (19:47 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Nov 2016 10:32:26 +0000 (11:32 +0100)
Avoid no necessary parentheses to comply with the standard kernel
coding style.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/p80211req.c

index 3414fd80c803ecae219621b10ab9d73cea6d1b27..e9fbe180017f96c4750c25556cf123dd81dbf0e7 100644 (file)
@@ -132,7 +132,7 @@ int p80211req_dorequest(struct wlandevice *wlandev, u8 *msgbuf)
        }
 
        /* Check for busy status */
-       if (test_and_set_bit(1, &(wlandev->request_pending)))
+       if (test_and_set_bit(1, &wlandev->request_pending))
                return -EBUSY;
 
        /* Allow p80211 to look at msg and handle if desired. */
@@ -144,7 +144,7 @@ int p80211req_dorequest(struct wlandevice *wlandev, u8 *msgbuf)
        if (wlandev->mlmerequest)
                wlandev->mlmerequest(wlandev, msg);
 
-       clear_bit(1, &(wlandev->request_pending));
+       clear_bit(1, &wlandev->request_pending);
        return 0;       /* if result==0, msg->status still may contain an err */
 }