summaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx
diff options
context:
space:
mode:
authorCedric Neveux <cedric.neveux@nxp.com>2018-11-16 14:01:21 +0100
committerSilvano di Ninno <silvano.dininno@nxp.com>2020-07-23 11:22:57 +0200
commitc2e58ab882a19537916d3843eddcc8204c52a7e6 (patch)
tree68c002346e221bee8fb591dfb9d95e377b887312 /arch/arm/mach-imx
parent9743a158336c633936d7073abb106d1483bd0346 (diff)
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 <cedric.neveux@nxp.com> Signed-off-by: Arulpandiyan Vadivel <arulpandiyan_vadivel@mentor.com> Signed-off-by: Shrikant Bobade <Shrikant_Bobade@mentor.com> (cherry picked from commit 8e416ebaada127eeb408cf2e2ffc41202933eebb)
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r--arch/arm/mach-imx/busfreq_optee.c5
1 files 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;
}