From: Soren Brinkmann Date: Wed, 19 Dec 2012 18:18:37 +0000 (-0800) Subject: arm: zynq: timer: Remove unnecessary register write X-Git-Tag: next-20130218~115^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f9aad87c3013f50fe01971a012faf910a568dd50;p=karo-tx-linux.git arm: zynq: timer: Remove unnecessary register write Acknowedging an interrupt requires to read the interrupt register only. The write was only required to work around a bug in the QEMU implementation of the TTC, which is fixed. Signed-off-by: Soren Brinkmann Acked-by: Peter Crosthwaite Tested-by: Josh Cartwright --- diff --git a/arch/arm/mach-zynq/timer.c b/arch/arm/mach-zynq/timer.c index 570491d37966..f1d224bf162d 100644 --- a/arch/arm/mach-zynq/timer.c +++ b/arch/arm/mach-zynq/timer.c @@ -121,8 +121,7 @@ static irqreturn_t xttcps_clock_event_interrupt(int irq, void *dev_id) struct xttcps_timer *timer = &xttce->xttc; /* Acknowledge the interrupt and call event handler */ - __raw_writel(__raw_readl(timer->base_addr + XTTCPS_ISR_OFFSET), - timer->base_addr + XTTCPS_ISR_OFFSET); + __raw_readl(timer->base_addr + XTTCPS_ISR_OFFSET); xttce->ce.event_handler(&xttce->ce);