aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Fleming <[email protected]>2013-02-22 15:03:47 +0000
committerH. Peter Anvin <[email protected]>2013-02-25 16:01:35 -0800
commit058e7b5814534461b0e2468fce5a8f8d2f43c38f (patch)
tree403067f92888bf9cf62191525909478c2b3d861b
parent1256276c98dbcfb009ac8e0687df9a1e291fd149 (diff)
x86, efi: Mark disable_runtime as __initdata
disable_runtime is only referenced from __init functions, so mark it as __initdata. Reported-by: Yinghai Lu <[email protected]> Reviewed-by: Satoru Takeuchi <[email protected]> Signed-off-by: Matt Fleming <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: H. Peter Anvin <[email protected]>
-rw-r--r--arch/x86/platform/efi/efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c
index e2cd38ffc406..ec9f3254c7f1 100644
--- a/arch/x86/platform/efi/efi.c
+++ b/arch/x86/platform/efi/efi.c
@@ -85,7 +85,7 @@ int efi_enabled(int facility)
}
EXPORT_SYMBOL(efi_enabled);
-static bool disable_runtime = false;
+static bool __initdata disable_runtime = false;
static int __init setup_noefi(char *arg)
{
disable_runtime = true;