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: Runmin Wang <runminw@codeaurora.org>
This commit is contained in:
parent
ab26d09879
commit
f229a4b89a
1 changed files with 2 additions and 2 deletions
|
@ -197,13 +197,13 @@ struct msm_port {
|
||||||
static
|
static
|
||||||
void msm_write(struct uart_port *port, unsigned int val, unsigned int off)
|
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
|
static
|
||||||
unsigned int msm_read(struct uart_port *port, unsigned int off)
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue