Staging: bcm: Remove unnecessary parentheses
authorTugce Sirin <ztugcesirin@gmail.com>
Wed, 19 Mar 2014 18:55:25 +0000 (20:55 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Mar 2014 20:53:56 +0000 (13:53 -0700)
This patch fixes checkpatch.pl warning Unnecessary parentheses in bcm
driver.

Signed-off-by: Tugce Sirin <ztugcesirin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/nvm.c

index c4e445eb57e50165b6a775befe1d7390f1856371..63be3be62ebd9b0fc1093109b0ad9c8b085bfc42 100644 (file)
@@ -3374,7 +3374,7 @@ int BcmSetActiveSection(struct bcm_mini_adapter *Adapter, enum bcm_flash2x_secti
        case DSD2:
                if (ReadDSDSignature(Adapter, eFlash2xSectVal) == DSD_IMAGE_MAGIC_NUMBER) {
                        HighestPriDSD = getHighestPriDSD(Adapter);
-                       if ((HighestPriDSD == eFlash2xSectVal)) {
+                       if (HighestPriDSD == eFlash2xSectVal) {
                                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "Given DSD<%x> already has highest priority", eFlash2xSectVal);
                                Status = STATUS_SUCCESS;
                                break;
@@ -3402,7 +3402,7 @@ int BcmSetActiveSection(struct bcm_mini_adapter *Adapter, enum bcm_flash2x_secti
 
                                HighestPriDSD = getHighestPriDSD(Adapter);
 
-                               if ((HighestPriDSD == eFlash2xSectVal)) {
+                               if (HighestPriDSD == eFlash2xSectVal) {
                                        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, NVM_RW, DBG_LVL_ALL, "Made the DSD: %x highest by reducing priority of other\n", eFlash2xSectVal);
                                        Status = STATUS_SUCCESS;
                                        break;
@@ -3421,7 +3421,7 @@ int BcmSetActiveSection(struct bcm_mini_adapter *Adapter, enum bcm_flash2x_secti
                                }
 
                                HighestPriDSD = getHighestPriDSD(Adapter);
-                               if ((HighestPriDSD == eFlash2xSectVal)) {
+                               if (HighestPriDSD == eFlash2xSectVal) {
                                        Status = STATUS_SUCCESS;
                                        break;
                                }