summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/pm34xx.c
diff options
context:
space:
mode:
authorRoel Kluin2010-01-08 19:29:07 +0100
committerTony Lindgren2010-01-08 19:29:07 +0100
commit1b6e821f234f9e22ad1ef4919e140625af251935 (patch)
treea87814ef643bf18b937de394dc8d9dd295ae9dfc /arch/arm/mach-omap2/pm34xx.c
parentomap3: add missing parentheses (diff)
downloadkernel-qcow2-linux-1b6e821f234f9e22ad1ef4919e140625af251935.tar.gz
kernel-qcow2-linux-1b6e821f234f9e22ad1ef4919e140625af251935.tar.xz
kernel-qcow2-linux-1b6e821f234f9e22ad1ef4919e140625af251935.zip
omap3: add missing parentheses
`!' has a higher precedence than `&' so parentheses are required. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/pm34xx.c')
-rw-r--r--arch/arm/mach-omap2/pm34xx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c
index 81ed252a0f8a..c6cc809afb79 100644
--- a/arch/arm/mach-omap2/pm34xx.c
+++ b/arch/arm/mach-omap2/pm34xx.c
@@ -124,8 +124,8 @@ static void omap3_core_save_context(void)
control_padconf_off |= START_PADCONF_SAVE;
omap_ctrl_writel(control_padconf_off, OMAP343X_CONTROL_PADCONF_OFF);
/* wait for the save to complete */
- while (!omap_ctrl_readl(OMAP343X_CONTROL_GENERAL_PURPOSE_STATUS)
- & PADCONF_SAVE_DONE)
+ while (!(omap_ctrl_readl(OMAP343X_CONTROL_GENERAL_PURPOSE_STATUS)
+ & PADCONF_SAVE_DONE))
;
/* Save the Interrupt controller context */
omap_intc_save_context();