summaryrefslogtreecommitdiff
path: root/drivers/tty
diff options
context:
space:
mode:
authorSubbaraman Narayanamurthy <subbaram@codeaurora.org>2014-06-05 19:20:38 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2014-06-09 16:55:13 -0700
commit53aa671eea96c7ec2f0df47c38c2297c4b70ee54 (patch)
tree1a381722537420ee4667fb6793cb11b0e48f32f5 /drivers/tty
parent24cfd94cd1fcbb718b3cbafaab7f240ba7b3814e (diff)
msm_serial_hs_lite: Restore using "no_log" readl/writel variants
msm_hsl_read and msm_hsl_write are called frequently enough to flood the RTB logs with readl/writel events. Restore using _no_log variants of those accessors to make RTB log useful for debugging. Change-Id: Idf05034a847d53a7df38e654c464a94f78130a35 Signed-off-by: Subbaraman Narayanamurthy <subbaram@codeaurora.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/msm_serial_hs_lite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/msm_serial_hs_lite.c b/drivers/tty/serial/msm_serial_hs_lite.c
index 0878abf58720..daf5036bc2c6 100644
--- a/drivers/tty/serial/msm_serial_hs_lite.c
+++ b/drivers/tty/serial/msm_serial_hs_lite.c
@@ -167,13 +167,13 @@ static inline void msm_hsl_write(struct uart_port *port,
unsigned int val, unsigned int off)
{
__iowmb();
- __raw_writel((__force __u32)cpu_to_le32(val),
+ __raw_writel_no_log((__force __u32)cpu_to_le32(val),
port->membase + off);
}
static inline unsigned int msm_hsl_read(struct uart_port *port,
unsigned int off)
{
- unsigned int v = le32_to_cpu((__force __le32)__raw_readl(
+ unsigned int v = le32_to_cpu((__force __le32)__raw_readl_no_log(
port->membase + off));
__iormb();
return v;