summaryrefslogtreecommitdiff
path: root/drivers/tty
diff options
context:
space:
mode:
authorRunmin Wang <runminw@codeaurora.org>2016-09-02 09:41:25 -0700
committerRunmin Wang <runminw@codeaurora.org>2016-09-02 09:46:39 -0700
commitf229a4b89a9c78dd5ee289f5ba5503b130c614cf (patch)
treef3b87bcd4c788cf6c46ba636bae71a599ba0b9ce /drivers/tty
parentab26d098793adbf90b77d414663e34ac0c7315f6 (diff)
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>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/msm_serial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/msm_serial.c b/drivers/tty/serial/msm_serial.c
index 670eda466438..da64f88729b8 100644
--- a/drivers/tty/serial/msm_serial.c
+++ b/drivers/tty/serial/msm_serial.c
@@ -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);
}
/*