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 <anandakumarm@nvidia.com>
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 <svc-mobile-coverity@nvidia.com>
Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sachin Nikam <snikam@nvidia.com>
Tested-by: Sachin Nikam <snikam@nvidia.com>
This commit is contained in:
Ajay Nandakumar
2017-06-27 12:32:01 +05:30
committed by Laxman Dewangan
parent 3fbe739b6f
commit 12be717e8c

View File

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