net/bnx2x: remove redundant parenthesis
authorStephen Hemminger <sthemmin@microsoft.com>
Thu, 14 Dec 2017 23:32:17 +0000 (15:32 -0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 5 Jan 2018 21:07:03 +0000 (22:07 +0100)
No need for extra parentheis around simple if expresssion

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
drivers/net/bnx2x/bnx2x.c
drivers/net/bnx2x/ecore_sp.c

index 9394f6c..1b36cab 100644 (file)
@@ -8137,7 +8137,7 @@ static int bnx2x_get_igu_cam_info(struct bnx2x_softc *sc)
                        continue;
                }
                fid = IGU_FID(val);
-               if ((fid & IGU_FID_ENCODE_IS_PF)) {
+               if (fid & IGU_FID_ENCODE_IS_PF) {
                        if ((fid & IGU_FID_PF_NUM_MASK) != pfid) {
                                continue;
                        }
index ef7f9fe..a75a7fa 100644 (file)
@@ -3402,7 +3402,7 @@ void ecore_init_mac_credit_pool(struct bnx2x_softc *sc,
                /* CAM credit is equally divided between all active functions
                 * on the PORT!.
                 */
-               if ((func_num > 0)) {
+               if (func_num > 0) {
                        if (!CHIP_REV_IS_SLOW(sc))
                                cam_sz = (MAX_MAC_CREDIT_E1H / (2 * func_num));
                        else
@@ -3419,7 +3419,7 @@ void ecore_init_mac_credit_pool(struct bnx2x_softc *sc,
                 * CAM credit is equaly divided between all active functions
                 * on the PATH.
                 */
-               if ((func_num > 0)) {
+               if (func_num > 0) {
                        if (!CHIP_REV_IS_SLOW(sc))
                                cam_sz = (MAX_MAC_CREDIT_E2 / func_num);
                        else