Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1337911 > unrolled thread

[PATCH 02/15] ACPICA: Remove incorrect "static" from a global structure

Started byLv Zheng <lv.zheng@intel.com>
First post2016-02-19 07:20 +0100
Last post2016-02-19 07:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 02/15] ACPICA: Remove incorrect "static" from a global structure Lv Zheng <lv.zheng@intel.com> - 2016-02-19 07:20 +0100

#1337911 — [PATCH 02/15] ACPICA: Remove incorrect "static" from a global structure

FromLv Zheng <lv.zheng@intel.com>
Date2016-02-19 07:20 +0100
Subject[PATCH 02/15] ACPICA: Remove incorrect "static" from a global structure
Message-ID<r3MA2-Re-23@gated-at.bofh.it>
From: Bob Moore <robert.moore@intel.com>

ACPICA commit 7a9956a2afd3863fa7d9fe4a64a957389d09f3c2

Reported by Colin Ian King. ACPICA BZ 1239.

Link: https://github.com/acpica/acpica/commit/7a9956a2
Link: https://bugs.acpica.org/show_bug.cgi?id=1239
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
---
 drivers/acpi/acpica/acpredef.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/acpi/acpica/acpredef.h b/drivers/acpi/acpica/acpredef.h
index 52f6bee..5faeab4 100644
--- a/drivers/acpi/acpica/acpredef.h
+++ b/drivers/acpi/acpica/acpredef.h
@@ -1125,7 +1125,7 @@ const union acpi_predefined_info acpi_gbl_resource_names[] = {
 	PACKAGE_INFO(0, 0, 0, 0, 0, 0)	/* Table terminator */
 };
 
-static const union acpi_predefined_info acpi_gbl_scope_names[] = {
+const union acpi_predefined_info acpi_gbl_scope_names[] = {
 	{{"_GPE", 0, 0}},
 	{{"_PR_", 0, 0}},
 	{{"_SB_", 0, 0}},
-- 
1.7.10

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web