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 <runminw@codeaurora.org>
This commit is contained in:
parent
9e2d528dc4
commit
08bc9d3d60
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue