mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
nvidia-oot: nvpps: Replace dev_info with dev_dbg.
nvpps driver is printing debug info when TSC status is not locked. Replace that status print for dev_info() to dev_dbg(). Bug 4566570 Change-Id: I6537e08204c35698bf11fd9c3ff4951a6167f8e9 Signed-off-by: Hiteshkumar Patel <hiteshkumarg@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3101099 Reviewed-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-by: Dipen Patel <dipenp@nvidia.com> Reviewed-by: svcacv <svcacv@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
e3f09d3989
commit
e77e6c5aec
@@ -370,7 +370,7 @@ static void tsc_timer_callback(struct timer_list *t)
|
|||||||
*/
|
*/
|
||||||
if (!(tsc_lock_status & BIT(TSC_LOCKED_STATUS_BIT_OFFSET))) {
|
if (!(tsc_lock_status & BIT(TSC_LOCKED_STATUS_BIT_OFFSET))) {
|
||||||
uint32_t lock_control;
|
uint32_t lock_control;
|
||||||
dev_info(pdev_data->dev, "tsc_lock_stat:%x\n", tsc_lock_status);
|
dev_dbg(pdev_data->dev, "tsc_lock_stat:0x%x\n", tsc_lock_status);
|
||||||
/* Write 1 to TSC_LOCKING_STATUS_0.ALIGNED to clear it */
|
/* Write 1 to TSC_LOCKING_STATUS_0.ALIGNED to clear it */
|
||||||
writel(tsc_lock_status | BIT(TSC_ALIGNED_STATUS_BIT_OFFSET),
|
writel(tsc_lock_status | BIT(TSC_ALIGNED_STATUS_BIT_OFFSET),
|
||||||
pdev_data->tsc_reg_map_base + TSC_LOCKING_STATUS_OFFSET);
|
pdev_data->tsc_reg_map_base + TSC_LOCKING_STATUS_OFFSET);
|
||||||
|
|||||||
Reference in New Issue
Block a user