summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Dietrich <marvin24@gmx.de>2012-03-06 13:52:04 -0700
committerSimone Willett <swillett@nvidia.com>2012-03-07 21:51:03 -0800
commitd4729f6e4ba0416f0f38383cfe440518653cabaa (patch)
treef7dacff3d233fa53a0a5ab887e6641a95c48c7c7
parentd6f27584aba731e251c18c52ffd197d1101db02d (diff)
ARM: tegra: fix compilation with binutils >= 2.21
Fix "Error: .size expression does not evaluate to a constant" with binutils since version >= 2.21 due to wrong naming of the label reference. Signed-off-by: Marc Dietrich <marvin24@gmx.de> Signed-off-by: Stephen Warren <swarren@wwwdotorg.org> Change-Id: I3d09c423f993aa5ec8cdf166199774a7a1b18396 Reviewed-on: http://git-master/r/88102 Reviewed-by: Scott Williams <scwilliams@nvidia.com> Reviewed-by: Stephen Warren <swarren@nvidia.com> Tested-by: Stephen Warren <swarren@nvidia.com>
-rw-r--r--arch/arm/mach-tegra/headsmp.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/headsmp.S b/arch/arm/mach-tegra/headsmp.S
index 21ff460d160a..9d01981c4363 100644
--- a/arch/arm/mach-tegra/headsmp.S
+++ b/arch/arm/mach-tegra/headsmp.S
@@ -330,6 +330,6 @@ __tegra_cpu_reset_handler_data:
.rept TEGRA_RESET_DATA_SIZE
.long 0
.endr
- .size __tegra_cpu_reset_handler_data, .-tegra_cpu_reset_handler_data
+ .size __tegra_cpu_reset_handler_data, . - __tegra_cpu_reset_handler_data
.align L1_CACHE_SHIFT
ENTRY(__tegra_cpu_reset_handler_end)