Skip to content

Commit 16d7436

Browse files
vlsunilpalmer-dabbelt
authored andcommitted
ACPI: RISC-V: Remove unnecessary CPPC debug message
The presence or absence of the CPPC SBI extension is currently logged on every boot. This message is not particularly useful and can clutter the boot log. Remove this debug message to reduce noise during boot. This change has no functional impact. Signed-off-by: Sunil V L <[email protected]> Reviewed-by: Anup Patel <[email protected]> Tested-by: Drew Fustini <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Palmer Dabbelt <[email protected]>
1 parent 82d369b commit 16d7436

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

drivers/acpi/riscv/cppc.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,8 @@ static int __init sbi_cppc_init(void)
3737
{
3838
if (sbi_spec_version >= sbi_mk_version(2, 0) &&
3939
sbi_probe_extension(SBI_EXT_CPPC) > 0) {
40-
pr_info("SBI CPPC extension detected\n");
4140
cppc_ext_present = true;
4241
} else {
43-
pr_info("SBI CPPC extension NOT detected!!\n");
4442
cppc_ext_present = false;
4543
}
4644

0 commit comments

Comments
 (0)