misc: tegra_cec: turn some prints into debug level

To prevent too many bufferred message from flushing out to serial when
we turn on/off display and blocking other high priority task due to
disabled IRQ, we change some prints to debug level to workaround that
problem as a short-term solution. The long-term will be implemented
later.

bug 200205349

Change-Id: I6609844d5c2ee58b2df6a51e9537bb7dd1448995
Signed-off-by: Vince Hsu <vinceh@nvidia.com>
Reviewed-on: http://git-master/r/1326683
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Chun Xu <chunx@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Juha Tukkinen <jtukkinen@nvidia.com>
This commit is contained in:
Vince Hsu
2017-03-23 15:26:02 +08:00
committed by Jon Hunter
parent 9b22ee78d3
commit f3071e5d0d

View File

@@ -493,7 +493,7 @@ static ssize_t cec_logical_addr_store(struct device *dev,
return ret; return ret;
dev_info(dev, "tegra_cec: set logical address: 0x%x\n", (u32)addr); dev_dbg(dev, "tegra_cec: set logical address: 0x%x\n", (u32)addr);
cec->logical_addr = addr; cec->logical_addr = addr;
state = readl(cec->cec_base + TEGRA_CEC_HW_CONTROL); state = readl(cec->cec_base + TEGRA_CEC_HW_CONTROL);
state &= ~TEGRA_CEC_HWCTRL_RX_LADDR_MASK; state &= ~TEGRA_CEC_HWCTRL_RX_LADDR_MASK;