diff options
author | Andi Kleen <ak@linux.intel.com> | 2013-08-06 00:02:50 +0200 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2013-08-06 23:21:08 +0200 |
commit | 28596b6a8779b736829ad837f95fdc2e81bdd1ee (patch) | |
tree | 10faa11526c977764535c6df6d1fa07059932a4a /arch/x86/include/asm/vvar.h | |
parent | x86, asmlinkage, power: Make various symbols used by the suspend asm code vis... (diff) | |
download | linux-28596b6a8779b736829ad837f95fdc2e81bdd1ee.tar.xz linux-28596b6a8779b736829ad837f95fdc2e81bdd1ee.zip |
x86, asmlinkage, vdso: Mark vdso variables __visible
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Link: http://lkml.kernel.org/r/1375740170-7446-17-git-send-email-andi@firstfloor.org
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/include/asm/vvar.h')
-rw-r--r-- | arch/x86/include/asm/vvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/vvar.h b/arch/x86/include/asm/vvar.h index de656ac2af41..d76ac40da206 100644 --- a/arch/x86/include/asm/vvar.h +++ b/arch/x86/include/asm/vvar.h @@ -35,7 +35,7 @@ #define DEFINE_VVAR(type, name) \ type name \ - __attribute__((section(".vvar_" #name), aligned(16))) + __attribute__((section(".vvar_" #name), aligned(16))) __visible #define VVAR(name) (*vvaraddr_ ## name) |