diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-02-09 02:30:02 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-02-09 02:30:02 +0300 |
commit | e2dac603d4bcb98c65d6f97848b72a217d0dd854 (patch) | |
tree | de14068b85ceb8a836e6865b194dae27bc3033d0 | |
parent | 27b4ad621e887ce8e5eb508a0103f13d30f6b38a (diff) | |
parent | ce5cbf53496bfebe1b7478a532820373342e8302 (diff) | |
download | linux-e2dac603d4bcb98c65d6f97848b72a217d0dd854.tar.xz |
Merge tag 'acpi-5.0-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull ACPI fix from Rafael Wysocki:
"This prevents excessive ACPI debug messages from being printed to the
kernel log, which has started to happen after one of the recent ACPICA
commits (Erik Schmauss)"
* tag 'acpi-5.0-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI: Set debug output flags independent of ACPICA
-rw-r--r-- | drivers/acpi/bus.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 5c093ce01bcd..147f6c7ea59c 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -1029,6 +1029,9 @@ void __init acpi_early_init(void) acpi_permanent_mmap = true; + /* Initialize debug output. Linux does not use ACPICA defaults */ + acpi_dbg_level = ACPI_LV_INFO | ACPI_LV_REPAIR; + #ifdef CONFIG_X86 /* * If the machine falls into the DMI check table, |