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
(cherry picked from e77e6c5aec)
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3104089
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Hiteshkumar Patel
2024-03-20 22:10:09 +00:00
committed by mobile promotions
parent 8b7a66b2cb
commit e4f9759f61

View File

@@ -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);