Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 08bc9d3d authored by Runmin Wang's avatar Runmin Wang
Browse files

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: default avatarRunmin Wang <runminw@codeaurora.org>
parent 9e2d528d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();
}