From 08bc9d3d6016f924695dae6d9c9c98f2a2788c9b Mon Sep 17 00:00:00 2001 From: Runmin Wang Date: Thu, 22 Sep 2016 16:49:45 -0700 Subject: [PATCH] drivers: GICv3: remove the rtb logs of gic_poke_irq gic_poke_irq creates lots of RTB logging. Update the API to call the no log version of write_relax. CRs-Fixed: 1070282 Change-Id: I6924bc24fafb1685a2a157656281e7d36223257e Signed-off-by: Runmin Wang --- drivers/irqchip/irq-gic-v3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c index 0608e08b4427..50c8c92d575d 100644 --- a/drivers/irqchip/irq-gic-v3.c +++ b/drivers/irqchip/irq-gic-v3.c @@ -199,7 +199,7 @@ static void gic_poke_irq(struct irq_data *d, u32 offset) rwp_wait = gic_dist_wait_for_rwp; } - writel_relaxed(mask, base + offset + (gic_irq(d) / 32) * 4); + writel_relaxed_no_log(mask, base + offset + (gic_irq(d) / 32) * 4); rwp_wait(); }