Skip to content

Commit 0cf70af

Browse files
committed
HSD15017110843: firmware: stratix10-svc: Change error log to debug log for duration measurement
Change measurement logging to debug log. Signed-off-by: Mahesh Rao <[email protected]>
1 parent 5245049 commit 0cf70af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/firmware/stratix10-svc.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2337,8 +2337,7 @@ static inline void stratix10_smc_1_2(struct stratix10_async_ctrl *actrl,
23372337
t0 = ktime_get();
23382338
arm_smccc_1_2_smc(args, res);
23392339
t1 = ktime_get();
2340-
dev_err(ctrl->dev, "Duration is %lld ns res->a0=0x%016lx\n",
2341-
ktime_to_ns(ktime_sub(t1, t0)), res->a0);
2340+
dev_dbg(ctrl->dev, "Duration is %lld ns", ktime_to_ns(ktime_sub(t1, t0)));
23422341
dev_dbg(ctrl->dev, "res->a0=0x%016lx", res->a0);
23432342
dev_dbg(ctrl->dev, "res->a1=0x%016lx, res->a2=0x%016lx,", res->a1, res->a2);
23442343
dev_dbg(ctrl->dev, "res->a3=0x%016lx, res->a4=0x%016lx,", res->a3, res->a4);

0 commit comments

Comments
 (0)