aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/riscv/cppc.c
diff options
context:
space:
mode:
authorSunil V L <[email protected]>2025-07-11 14:00:13 +0000
committerPalmer Dabbelt <[email protected]>2025-07-16 15:21:06 +0000
commit16d743606dba05f9ad87837791fcd5c083544c43 (patch)
treebe86de0d7f997afd2d49ece896c68ba7c85afc78 /drivers/acpi/riscv/cppc.c
parentriscv: Stop considering R_RISCV_NONE as bad relocations (diff)
downloadkernel-16d743606dba05f9ad87837791fcd5c083544c43.tar.gz
kernel-16d743606dba05f9ad87837791fcd5c083544c43.zip
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]>
Diffstat (limited to 'drivers/acpi/riscv/cppc.c')
-rw-r--r--drivers/acpi/riscv/cppc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/acpi/riscv/cppc.c b/drivers/acpi/riscv/cppc.c
index 4cdff387deff..440cf9fb91aa 100644
--- a/drivers/acpi/riscv/cppc.c
+++ b/drivers/acpi/riscv/cppc.c
@@ -37,10 +37,8 @@ static int __init sbi_cppc_init(void)
{
if (sbi_spec_version >= sbi_mk_version(2, 0) &&
sbi_probe_extension(SBI_EXT_CPPC) > 0) {
- pr_info("SBI CPPC extension detected\n");
cppc_ext_present = true;
} else {
- pr_info("SBI CPPC extension NOT detected!!\n");
cppc_ext_present = false;
}