Patch "remove dependency between aiutils and siutils sources" introduced
several checkpatch warnings. This patch removes one from si_pmu_res_init().

Cc: [email protected]
Cc: [email protected]
Cc: Brett Rudley <[email protected]>
Cc: Henry Ptasinski <[email protected]>
Cc: Roland Vossen <[email protected]>
Signed-off-by: Arend van Spriel <[email protected]>
---
 drivers/staging/brcm80211/brcmsmac/wlc_pmu.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/brcm80211/brcmsmac/wlc_pmu.c 
b/drivers/staging/brcm80211/brcmsmac/wlc_pmu.c
index cd42a77..2c3d42fd 100644
--- a/drivers/staging/brcm80211/brcmsmac/wlc_pmu.c
+++ b/drivers/staging/brcm80211/brcmsmac/wlc_pmu.c
@@ -1626,7 +1626,8 @@ void si_pmu_res_init(si_t *sih)
                        pmu_res_updown_table_sz = 0;
                } else {
                        pmu_res_updown_table = bcm4329_res_updown;
-                       pmu_res_updown_table_sz = 
ARRAY_SIZE(bcm4329_res_updown);
+                       pmu_res_updown_table_sz =
+                               ARRAY_SIZE(bcm4329_res_updown);
                }
                /* Optimize resources dependencies */
                pmu_res_depend_table = bcm4329_res_depend;
@@ -1758,15 +1759,13 @@ void si_pmu_res_init(si_t *sih)
 
        /* Program max resource mask */
 
-       if (max_mask) {
+       if (max_mask)
                W_REG(&cc->max_res_mask, max_mask);
-       }
 
        /* Program min resource mask */
 
-       if (min_mask) {
+       if (min_mask)
                W_REG(&cc->min_res_mask, min_mask);
-       }
 
        /* Add some delay; allow resources to come up and settle. */
        mdelay(2);
-- 
1.7.4.1


_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to