media: atomisp: Replace trace_printk by pr_info
authorNicolas Boichat <drinkcat@chromium.org>
Fri, 10 Jul 2020 06:45:29 +0000 (08:45 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sun, 19 Jul 2020 06:08:32 +0000 (08:08 +0200)
trace_printk should not be used in production code, replace it
call with pr_info.

Signed-off-by: Nicolas Boichat <drinkcat@chromium.org>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/atomisp/pci/hmm/hmm.c

index 42fef17..2bd39b4 100644 (file)
@@ -735,11 +735,11 @@ ia_css_ptr hmm_host_vaddr_to_hrt_vaddr(const void *ptr)
 
 void hmm_show_mem_stat(const char *func, const int line)
 {
-       trace_printk("tol_cnt=%d usr_size=%d res_size=%d res_cnt=%d sys_size=%d  dyc_thr=%d dyc_size=%d.\n",
-                    hmm_mem_stat.tol_cnt,
-                    hmm_mem_stat.usr_size, hmm_mem_stat.res_size,
-                    hmm_mem_stat.res_cnt, hmm_mem_stat.sys_size,
-                    hmm_mem_stat.dyc_thr, hmm_mem_stat.dyc_size);
+       pr_info("tol_cnt=%d usr_size=%d res_size=%d res_cnt=%d sys_size=%d  dyc_thr=%d dyc_size=%d.\n",
+               hmm_mem_stat.tol_cnt,
+               hmm_mem_stat.usr_size, hmm_mem_stat.res_size,
+               hmm_mem_stat.res_cnt, hmm_mem_stat.sys_size,
+               hmm_mem_stat.dyc_thr, hmm_mem_stat.dyc_size);
 }
 
 void hmm_init_mem_stat(int res_pgnr, int dyc_en, int dyc_pgnr)