diff options
author | Matt Fleming <matt.fleming@intel.com> | 2013-02-22 15:03:47 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2013-02-25 16:01:35 -0800 |
commit | 058e7b5814534461b0e2468fce5a8f8d2f43c38f (patch) | |
tree | 403067f92888bf9cf62191525909478c2b3d861b /arch/x86 | |
parent | 1256276c98dbcfb009ac8e0687df9a1e291fd149 (diff) | |
download | linux-058e7b5814534461b0e2468fce5a8f8d2f43c38f.tar.gz linux-058e7b5814534461b0e2468fce5a8f8d2f43c38f.tar.bz2 linux-058e7b5814534461b0e2468fce5a8f8d2f43c38f.zip |
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) } 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; |