diff options
author | 2025-06-08 22:07:05 -0500 | |
---|---|---|
committer | 2025-06-18 21:09:12 +0200 | |
commit | 814eca1085ef26dae928372be374fd27690d24ab (patch) | |
tree | faa19fbb6a8946e3cb36fe4d7a25beb6f8103954 | |
parent | Linux 6.16-rc2 (diff) | |
download | wireguard-linux-814eca1085ef26dae928372be374fd27690d24ab.tar.xz wireguard-linux-814eca1085ef26dae928372be374fd27690d24ab.zip |
ACPI: Enable CONFIG_ACPI_DEBUG by default
CONFIG_ACPI_DEBUG can be helpful for getting debug messages on OEM
systems to identify a BIOS bug. It's a relatively small size increase
to turn it on by default (50kb) and that saves asking people to enable
it when an issue comes up because it wasn't in defconfig.
Enable it by default.
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Link: https://patch.msgid.link/20250609030706.465202-1-superm1@kernel.org
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 7bc40c2735ac..b594780a57d7 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig @@ -394,6 +394,7 @@ config ACPI_TABLE_OVERRIDE_VIA_BUILTIN_INITRD config ACPI_DEBUG bool "Debug Statements" + default y help The ACPI subsystem can produce debug output. Saying Y enables this output and increases the kernel size by around 50K. |