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

Commit 6a5d3cdf authored by Runmin Wang's avatar Runmin Wang Committed by Srinivas Ramana
Browse files

tty : msm_serial: Remove the rtb logs of msm_serial write and read



msm_write/read use write/read_relaxed function which will create
lots of RTB logging. Change the API to no_log version to remove
those RTB logs.

CRs-Fixed: 1062953
Change-Id: Id6524b7ae3e82e10ca651a2ca0de9223c18109da
Signed-off-by: default avatarRunmin Wang <runminw@codeaurora.org>
parent 2d7aeb93
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -197,13 +197,13 @@ struct msm_port {
static
void msm_write(struct uart_port *port, unsigned int val, unsigned int off)
{
	writel_relaxed(val, port->membase + off);
	writel_relaxed_no_log(val, port->membase + off);
}

static
unsigned int msm_read(struct uart_port *port, unsigned int off)
{
	return readl_relaxed(port->membase + off);
	return readl_relaxed_no_log(port->membase + off);
}

/*