]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: OMAP3+: SmartReflex: fix err interrupt disable sequence
authorNishanth Menon <nm@ti.com>
Wed, 29 Feb 2012 22:33:38 +0000 (23:33 +0100)
committerKevin Hilman <khilman@ti.com>
Mon, 5 Mar 2012 19:29:26 +0000 (11:29 -0800)
sr_modify_mask takes mask, value as parameters, the usage
currently is value, mask which is wrong, as a result
vpboundint_st which was supposed to have been disabled,
does not get disabled.

Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Jean Pihet <j-pihet@ti.com>
Reviewed-by: Kevin Hilman <khilman@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
arch/arm/mach-omap2/smartreflex.c

index 47c77a1d932a281d98847cbd5eb92575f49a16c7..eaf0d6e2f2e07361606cc67f01ab695843dc0249 100644 (file)
@@ -447,8 +447,8 @@ int sr_configure_errgen(struct voltagedomain *voltdm)
                sr_errconfig);
 
        /* Enabling the interrupts if the ERROR module is used */
-       sr_modify_reg(sr, errconfig_offs,
-               vpboundint_en, (vpboundint_en | vpboundint_st));
+       sr_modify_reg(sr, errconfig_offs, (vpboundint_en | vpboundint_st),
+                     vpboundint_en);
 
        return 0;
 }