linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ACPICA release 20190509
@ 2019-05-10 17:25 Erik Schmauss
  2019-05-10 17:25 ` [PATCH 1/2] ACPICA: Linux: move ACPI_DEBUG_DEFAULT flag out of ifndef Erik Schmauss
  2019-05-10 17:25 ` [PATCH 2/2] ACPICA: Update version to 20190509 Erik Schmauss
  0 siblings, 2 replies; 3+ messages in thread
From: Erik Schmauss @ 2019-05-10 17:25 UTC (permalink / raw)
  To: rjw, linux-acpi; +Cc: Erik Schmauss

This is the linuxized version of the ACPICA 20190509 release. This
release contained almost entirely iASL compiler features and bug fixes.
For linux, this release contains a simple adjustment to move
ACPI_DEBUG_DEFAULT symbol out of an ifdef.

This patch set is also available at the following link:

https://github.com/SchmErik/linux/tree/acpica201905

Bob Moore (1):
  ACPICA: Update version to 20190509

Erik Schmauss (1):
  ACPICA: Linux: move ACPI_DEBUG_DEFAULT flag out of ifndef

 include/acpi/acpixf.h           |  2 +-
 include/acpi/platform/aclinux.h | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

-- 
2.17.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/2] ACPICA: Linux: move ACPI_DEBUG_DEFAULT flag out of ifndef
  2019-05-10 17:25 [PATCH 0/2] ACPICA release 20190509 Erik Schmauss
@ 2019-05-10 17:25 ` Erik Schmauss
  2019-05-10 17:25 ` [PATCH 2/2] ACPICA: Update version to 20190509 Erik Schmauss
  1 sibling, 0 replies; 3+ messages in thread
From: Erik Schmauss @ 2019-05-10 17:25 UTC (permalink / raw)
  To: rjw, linux-acpi; +Cc: Erik Schmauss, Stable, Bob Moore

ACPICA commit c14f17fa0acf8c93497ce04b9a7f4ada51b69383

This flag should not be included in #ifndef CONFIG_ACPI. It should be
used unconditionally.

Link: https://github.com/acpica/acpica/commit/c14f17fa
Fixes: aa9aaa4d61c0 ("ACPI: use different default debug value than ACPICA")
CC: Stable <stable@vger.kernel.org> 5.1+
Reported-by: Gabriel C <nix.or.die@gmail.com>
Tested-by: Gabriel C <nix.or.die@gmail.com>
Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
---
 include/acpi/platform/aclinux.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/acpi/platform/aclinux.h b/include/acpi/platform/aclinux.h
index 624b90b34085..310501994c02 100644
--- a/include/acpi/platform/aclinux.h
+++ b/include/acpi/platform/aclinux.h
@@ -66,6 +66,11 @@
 
 #define ACPI_INIT_FUNCTION __init
 
+/* Use a specific bugging default separate from ACPICA */
+
+#undef ACPI_DEBUG_DEFAULT
+#define ACPI_DEBUG_DEFAULT          (ACPI_LV_INFO | ACPI_LV_REPAIR)
+
 #ifndef CONFIG_ACPI
 
 /* External globals for __KERNEL__, stubs is needed */
@@ -82,11 +87,6 @@
 #define ACPI_NO_ERROR_MESSAGES
 #undef ACPI_DEBUG_OUTPUT
 
-/* Use a specific bugging default separate from ACPICA */
-
-#undef ACPI_DEBUG_DEFAULT
-#define ACPI_DEBUG_DEFAULT          (ACPI_LV_INFO | ACPI_LV_REPAIR)
-
 /* External interface for __KERNEL__, stub is needed */
 
 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \
-- 
2.17.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] ACPICA: Update version to 20190509
  2019-05-10 17:25 [PATCH 0/2] ACPICA release 20190509 Erik Schmauss
  2019-05-10 17:25 ` [PATCH 1/2] ACPICA: Linux: move ACPI_DEBUG_DEFAULT flag out of ifndef Erik Schmauss
@ 2019-05-10 17:25 ` Erik Schmauss
  1 sibling, 0 replies; 3+ messages in thread
From: Erik Schmauss @ 2019-05-10 17:25 UTC (permalink / raw)
  To: rjw, linux-acpi; +Cc: Bob Moore, Erik Schmauss

From: Bob Moore <robert.moore@intel.com>

ACPICA commit 36449fa1dc914113f2b096622d22c2621fd22861

Version 20190509.

Link: https://github.com/acpica/acpica/commit/36449fa1
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
---
 include/acpi/acpixf.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h
index 3b1b1d0e4c33..4a8a05401fb5 100644
--- a/include/acpi/acpixf.h
+++ b/include/acpi/acpixf.h
@@ -12,7 +12,7 @@
 
 /* Current ACPICA subsystem version in YYYYMMDD format */
 
-#define ACPI_CA_VERSION                 0x20190405
+#define ACPI_CA_VERSION                 0x20190509
 
 #include <acpi/acconfig.h>
 #include <acpi/actypes.h>
-- 
2.17.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-05-10 17:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-10 17:25 [PATCH 0/2] ACPICA release 20190509 Erik Schmauss
2019-05-10 17:25 ` [PATCH 1/2] ACPICA: Linux: move ACPI_DEBUG_DEFAULT flag out of ifndef Erik Schmauss
2019-05-10 17:25 ` [PATCH 2/2] ACPICA: Update version to 20190509 Erik Schmauss

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).