diff options
author | Matt Fleming <matt.fleming@intel.com> | 2013-02-22 10:03:47 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2013-02-25 19:01:35 -0500 |
commit | 058e7b5814534461b0e2468fce5a8f8d2f43c38f (patch) | |
tree | 403067f92888bf9cf62191525909478c2b3d861b /arch/x86 | |
parent | 1256276c98dbcfb009ac8e0687df9a1e291fd149 (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 <yinghai@kernel.org>
Reviewed-by: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Link: http://lkml.kernel.org/r/1361545427-26393-1-git-send-email-matt@console-pimps.org
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/platform/efi/efi.c | 2 |
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) | |||
85 | } | 85 | } |
86 | EXPORT_SYMBOL(efi_enabled); | 86 | EXPORT_SYMBOL(efi_enabled); |
87 | 87 | ||
88 | static bool disable_runtime = false; | 88 | static bool __initdata disable_runtime = false; |
89 | static int __init setup_noefi(char *arg) | 89 | static int __init setup_noefi(char *arg) |
90 | { | 90 | { |
91 | disable_runtime = true; | 91 | disable_runtime = true; |