From 12be717e8ca30e76522173622f90d85f23552bd2 Mon Sep 17 00:00:00 2001 From: Ajay Nandakumar Date: Tue, 27 Jun 2017 12:32:01 +0530 Subject: [PATCH] platform: nvadsp: Silence debug t21x clock prints Moving debug clock logs from dev_info to dev_dbg as it creates a huge number of prints as ADSP is frequently suspended and resumed. Change-Id: I923ea079f74f1de659e3c8626d437cb0a22802bb Signed-off-by: Ajay Nandakumar Reviewed-on: https://git-master/r/1509154 (cherry picked from commit 3e9b288c245789f0a09cc7d9ba5a0ef2a7d74a4c) Reviewed-on: https://git-master.nvidia.com/r/1543825 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: svc-mobile-coverity Reviewed-by: svccoveritychecker GVS: Gerrit_Virtual_Submit Reviewed-by: Sachin Nikam Tested-by: Sachin Nikam --- drivers/platform/tegra/nvadsp/dev-t21x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/platform/tegra/nvadsp/dev-t21x.c b/drivers/platform/tegra/nvadsp/dev-t21x.c index b165415d..bbcc186d 100644 --- a/drivers/platform/tegra/nvadsp/dev-t21x.c +++ b/drivers/platform/tegra/nvadsp/dev-t21x.c @@ -47,7 +47,7 @@ static void nvadsp_clocks_disable(struct platform_device *pdev) if (drv_data->adsp_neon_clk) { clk_disable_unprepare(drv_data->adsp_neon_clk); - dev_info(dev, "adsp_neon clocks disabled\n"); + dev_dbg(dev, "adsp_neon clocks disabled\n"); drv_data->adsp_neon_clk = NULL; } @@ -59,7 +59,7 @@ static void nvadsp_clocks_disable(struct platform_device *pdev) if (drv_data->apb2ape_clk) { clk_disable_unprepare(drv_data->apb2ape_clk); - dev_info(dev, "apb2ape clock disabled\n"); + dev_dbg(dev, "apb2ape clock disabled\n"); drv_data->apb2ape_clk = NULL; }