diff options
author | Chen-Yu Tsai <wens@csie.org> | 2016-06-19 12:38:41 +0800 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2016-07-15 15:54:57 +0200 |
commit | afc1f65f504324cd5f87a8cb480bebeb0c61e4e0 (patch) | |
tree | 1a98b8e0694ebba50455fb9b9fefc55dba8d4969 /arch/arm/cpu/armv7/sunxi/psci.c | |
parent | 9c4f52b855876862a7a30b63bde4a0d22605c3dc (diff) | |
download | u-boot-imx-afc1f65f504324cd5f87a8cb480bebeb0c61e4e0.zip u-boot-imx-afc1f65f504324cd5f87a8cb480bebeb0c61e4e0.tar.gz u-boot-imx-afc1f65f504324cd5f87a8cb480bebeb0c61e4e0.tar.bz2 |
ARM: Move __secure definition to common asm/secure.h
sunxi and i.mx7 both define the __secure modifier to put functions in
the secure section. Move this to a common place.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'arch/arm/cpu/armv7/sunxi/psci.c')
-rw-r--r-- | arch/arm/cpu/armv7/sunxi/psci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/sunxi/psci.c b/arch/arm/cpu/armv7/sunxi/psci.c index c7d97fe..be3a1fb 100644 --- a/arch/arm/cpu/armv7/sunxi/psci.c +++ b/arch/arm/cpu/armv7/sunxi/psci.c @@ -17,11 +17,11 @@ #include <asm/gic.h> #include <asm/io.h> #include <asm/psci.h> +#include <asm/secure.h> #include <asm/system.h> #include <linux/bitops.h> -#define __secure __attribute__ ((section ("._secure.text"))) #define __irq __attribute__ ((interrupt ("IRQ"))) #define GICD_BASE (SUNXI_GIC400_BASE + GIC_DIST_OFFSET) |