From 5fe7e1b01d6db006b501d98b3b244bad66150bd1 Mon Sep 17 00:00:00 2001 From: Cedric Neveux Date: Fri, 16 Nov 2018 14:01:21 +0100 Subject: [PATCH] MLK-20389 Changed OPTEE busfreq trace To be able to constat that busfreq is started/done vith OPTEE OS, changed the mach-imx/busfreq_optee.c pr_debug macro with printk(KERN_DEBUG ...) Signed-off-by: Cedric Neveux Signed-off-by: Arulpandiyan Vadivel Signed-off-by: Shrikant Bobade (cherry picked from commit 8e416ebaada127eeb408cf2e2ffc41202933eebb) --- arch/arm/mach-imx/busfreq_optee.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-imx/busfreq_optee.c b/arch/arm/mach-imx/busfreq_optee.c index 1b2abd46158f..c475402dd153 100644 --- a/arch/arm/mach-imx/busfreq_optee.c +++ b/arch/arm/mach-imx/busfreq_optee.c @@ -120,7 +120,7 @@ int update_freq_optee(int ddr_rate) uint32_t all_cpus = 0; #endif - pr_debug("\nBusfreq OPTEE set from %d to %d start...\n", + pr_info("\nBusfreq OPTEE set from %d to %d start...\n", curr_ddr_rate, ddr_rate); if (ddr_rate == curr_ddr_rate) @@ -185,7 +185,8 @@ int update_freq_optee(int ddr_rate) local_irq_enable(); - pr_debug("Busfreq OPTEE set to %d done! cpu=%d\n", ddr_rate, me); + pr_info("Busfreq OPTEE set to %d done! cpu=%d\n", + ddr_rate, me); return 0; } -- 2.17.1