Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ffcab546 authored by Runmin Wang's avatar Runmin Wang
Browse files

arm64: cpufeature: change pr_warn to pr_debug



During cpu on and off, same type of warning messages are printed
too many times. Change the log level to debug.

Change-Id: Ic42b16e9aded7f84ddfe0603621c7f14d73da971
Signed-off-by: default avatarRunmin Wang <runminw@codeaurora.org>
parent 947c85b6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -536,7 +536,7 @@ static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot)
	update_cpu_ftr_reg(regp, val);
	if ((boot & regp->strict_mask) == (val & regp->strict_mask))
		return 0;
	pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n",
	pr_debug("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n",
			regp->name, boot, cpu, val);
	return 1;
}