[<prev] [next>] [day] [month] [year] [list]
Message-Id: <4b7c2e0e13d40d4713a7548f5cce9901c4c0d7e7.1443364529.git.geliangtang@163.com>
Date: Sun, 27 Sep 2015 22:38:40 +0800
From: Geliang Tang <geliangtang@....com>
To: "Rafael J. Wysocki" <rjw@...ysocki.net>,
Len Brown <lenb@...nel.org>, Tony Luck <tony.luck@...el.com>,
Jarkko Nikula <jarkko.nikula@...ux.intel.com>,
"Chen, Gong" <gong.chen@...ux.intel.com>
Cc: Geliang Tang <geliangtang@....com>, linux-acpi@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] acpi/apei: apei_resources_all should be static
Fixes the following sparse warning:
drivers/acpi/apei/apei-base.c:298:23: warning: symbol
'apei_resources_all' was not declared. Should it be static?
Signed-off-by: Geliang Tang <geliangtang@....com>
---
drivers/acpi/apei/apei-base.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/acpi/apei/apei-base.c b/drivers/acpi/apei/apei-base.c
index a2c8d7a..8e7600c 100644
--- a/drivers/acpi/apei/apei-base.c
+++ b/drivers/acpi/apei/apei-base.c
@@ -295,7 +295,7 @@ struct apei_res {
};
/* Collect all resources requested, to avoid conflict */
-struct apei_resources apei_resources_all = {
+static struct apei_resources apei_resources_all = {
.iomem = LIST_HEAD_INIT(apei_resources_all.iomem),
.ioport = LIST_HEAD_INIT(apei_resources_all.ioport),
};
--
2.5.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists