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

Commit 022d2671 authored by Channagoud Kadabi's avatar Channagoud Kadabi
Browse files

cpufeature: change logging for cpu features



During cpu on/off some of the cpu variant related messages are printed
flooding the kernel logs. Change the logging to pr_debug to avoid
excessive logging.

Change-Id: Ia80685da3bf2ec971c097848af5aa245f24d04dd
Signed-off-by: default avatarChannagoud Kadabi <ckadabi@codeaurora.org>
parent c009f701
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -588,7 +588,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;
}