diff options
author | Chen-Yu Tsai <wens@csie.org> | 2016-06-19 12:38:38 +0800 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2016-07-15 15:54:57 +0200 |
commit | 28f90357323bc65e7da01c458222b84dc42988bb (patch) | |
tree | 738e4e7eb887bda79a71088f5cb85d3e6b1684f9 | |
parent | 8c0ef7fad676827125ad91060361d05ab4b16f44 (diff) | |
download | u-boot-28f90357323bc65e7da01c458222b84dc42988bb.tar.gz u-boot-28f90357323bc65e7da01c458222b84dc42988bb.tar.xz u-boot-28f90357323bc65e7da01c458222b84dc42988bb.zip |
ARM: PSCI: Remove unused psci_text_end symbol
psci_text_end was used to calculate the PSCI stack address following the
secure monitor text. Now that we have an explicit secure stack section,
this is no longer used.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | arch/arm/cpu/armv7/ls102xa/psci.S | 2 | ||||
-rw-r--r-- | arch/arm/cpu/armv7/mx7/psci.S | 2 | ||||
-rw-r--r-- | arch/arm/cpu/armv7/sunxi/psci.c | 5 | ||||
-rw-r--r-- | arch/arm/mach-tegra/psci.S | 2 |
4 files changed, 0 insertions, 11 deletions
diff --git a/arch/arm/cpu/armv7/ls102xa/psci.S b/arch/arm/cpu/armv7/ls102xa/psci.S index 86116e1fcc..ba043efed0 100644 --- a/arch/arm/cpu/armv7/ls102xa/psci.S +++ b/arch/arm/cpu/armv7/ls102xa/psci.S @@ -111,6 +111,4 @@ psci_cpu_off: 1: wfi b 1b - .globl psci_text_end -psci_text_end: .popsection diff --git a/arch/arm/cpu/armv7/mx7/psci.S b/arch/arm/cpu/armv7/mx7/psci.S index 12cca7cc6d..d9e9fbfb9e 100644 --- a/arch/arm/cpu/armv7/mx7/psci.S +++ b/arch/arm/cpu/armv7/mx7/psci.S @@ -33,6 +33,4 @@ psci_cpu_off: 1: wfi b 1b - .globl psci_text_end -psci_text_end: .popsection diff --git a/arch/arm/cpu/armv7/sunxi/psci.c b/arch/arm/cpu/armv7/sunxi/psci.c index cd0d94462b..c7d97fe2c9 100644 --- a/arch/arm/cpu/armv7/sunxi/psci.c +++ b/arch/arm/cpu/armv7/sunxi/psci.c @@ -271,8 +271,3 @@ void __secure psci_arch_init(void) reg &= ~BIT(0); /* Secure mode */ cp15_write_scr(reg); } - -/* dummy entry for end of psci text */ -void __secure psci_text_end(void) -{ -} diff --git a/arch/arm/mach-tegra/psci.S b/arch/arm/mach-tegra/psci.S index 75068f34c0..85d5b6b59d 100644 --- a/arch/arm/mach-tegra/psci.S +++ b/arch/arm/mach-tegra/psci.S @@ -106,6 +106,4 @@ ENTRY(psci_cpu_on) pop {pc} ENDPROC(psci_cpu_on) - .globl psci_text_end -psci_text_end: .popsection |