aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc/kernel/una_asm_64.S
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2011-03-09 15:54:27 -0500
committerDavid S. Miller <davem@davemloft.net>2011-03-16 21:19:15 -0400
commit35043c428f1fcb92feb5792f5878a8852ee00771 (patch)
treeb3d58134082d3830a142f5df1592b8bab618f7d9 /arch/sparc/kernel/una_asm_64.S
parentc6fee0810df4e0f4cf9c4834d2569ca01c02cffc (diff)
sparc: Fix .size directive for do_int_load
gas used to accept (and ignore?) .size directives which referred to undefined symbols, as this does. In binutils 2.21 these are treated as errors. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/una_asm_64.S')
-rw-r--r--arch/sparc/kernel/una_asm_64.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/una_asm_64.S b/arch/sparc/kernel/una_asm_64.S
index be183fe4144..1c8d33228b2 100644
--- a/arch/sparc/kernel/una_asm_64.S
+++ b/arch/sparc/kernel/una_asm_64.S
@@ -127,7 +127,7 @@ do_int_load:
127 wr %o5, 0x0, %asi 127 wr %o5, 0x0, %asi
128 retl 128 retl
129 mov 0, %o0 129 mov 0, %o0
130 .size __do_int_load, .-__do_int_load 130 .size do_int_load, .-do_int_load
131 131
132 .section __ex_table,"a" 132 .section __ex_table,"a"
133 .word 4b, __retl_efault 133 .word 4b, __retl_efault