]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
OMAP3: PM: whitespace cleanup around IO wakeup enable
authorKevin Hilman <khilman@deeprootsystems.com>
Tue, 10 Aug 2010 23:04:35 +0000 (16:04 -0700)
committerKevin Hilman <khilman@deeprootsystems.com>
Tue, 21 Sep 2010 18:46:17 +0000 (11:46 -0700)
Cleanup indentation around IO wakeup enable, the '\' terminator is
not required in C when wrapping an expression past end-of-line.

Whitespace change only.

Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
arch/arm/mach-omap2/pm34xx.c

index 7b03426c72a317307db1df3931a5018443117b33..b5e5bcbb4964f6c66f3f7d38be77d06e3daef2ce 100644 (file)
@@ -385,9 +385,9 @@ void omap_sram_idle(void)
        /* Enable IO-PAD and IO-CHAIN wakeups */
        per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
        core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
-       if (omap3_has_io_wakeup() && \
-                       (per_next_state < PWRDM_POWER_ON ||
-                       core_next_state < PWRDM_POWER_ON)) {
+       if (omap3_has_io_wakeup() &&
+           (per_next_state < PWRDM_POWER_ON ||
+            core_next_state < PWRDM_POWER_ON)) {
                prm_set_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD, PM_WKEN);
                omap3_enable_io_chain();
        }