Emilio G. Cota <c...@braap.org> writes:
> From: Paolo Bonzini <pbonz...@redhat.com> > > Cc: Stafford Horne <sho...@gmail.com> > Reviewed-by: Philippe Mathieu-Daudé <f4...@amsat.org> > Reviewed-by: Richard Henderson <richard.hender...@linaro.org> > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> > Signed-off-by: Emilio G. Cota <c...@braap.org> Reviewed-by: Alex Bennée <alex.ben...@linaro.org> > --- > target/openrisc/sys_helper.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/target/openrisc/sys_helper.c b/target/openrisc/sys_helper.c > index ab4d8fb520..c645cc896d 100644 > --- a/target/openrisc/sys_helper.c > +++ b/target/openrisc/sys_helper.c > @@ -170,7 +170,7 @@ void HELPER(mtspr)(CPUOpenRISCState *env, target_ulong > spr, target_ulong rb) > env->ttmr = (rb & ~TTMR_IP) | ip; > } else { /* Clear IP bit. */ > env->ttmr = rb & ~TTMR_IP; > - cs->interrupt_request &= ~CPU_INTERRUPT_TIMER; > + cpu_reset_interrupt(cs, CPU_INTERRUPT_TIMER); > } > > cpu_openrisc_timer_update(cpu); -- Alex Bennée