ARM: OMAP3+: SmartReflex: fix err interrupt disable sequence
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>
This commit is contained in:
parent
cea6b94212
commit
74754cc5e0
|
@ -447,8 +447,8 @@ int sr_configure_errgen(struct voltagedomain *voltdm)
|
||||||
sr_errconfig);
|
sr_errconfig);
|
||||||
|
|
||||||
/* Enabling the interrupts if the ERROR module is used */
|
/* Enabling the interrupts if the ERROR module is used */
|
||||||
sr_modify_reg(sr, errconfig_offs,
|
sr_modify_reg(sr, errconfig_offs, (vpboundint_en | vpboundint_st),
|
||||||
vpboundint_en, (vpboundint_en | vpboundint_st));
|
vpboundint_en);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue