diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-01-31 19:48:49 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-31 22:32:44 -0500 |
commit | 4787083fcce866e275bedeb87cd6dfba34c84253 (patch) | |
tree | 82b48b36727aba73dcdfd152e2a20da3af13832a | |
parent | c6d64c16bb193c8ca2ccc0b3c556a4574a02408b (diff) |
[SPARC64]: Fix inconsistent .section usage in lib/
A few places missed the "a" specifier for the __ex_table section. Add
these so we avoid generation an additional section at link time.
Latest modpost would otherwise complain like this:
WARNING: vmlinux.o (__ex_table.2): section name inconsistency.
(.[number]+) following section name.
Did you forget to use "ax"/"aw" in a .S file?
Note that for example <linux/init.h> contains
section definitions for use in .S files.
WARNING: vmlinux.o (__ex_table.4): section name inconsistency.
(.[number]+) following section name.
Did you forget to use "ax"/"aw" in a .S file?
Note that for example <linux/init.h> contains
section definitions for use in .S files.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | arch/sparc64/lib/GENbzero.S | 2 | ||||
-rw-r--r-- | arch/sparc64/lib/NGbzero.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc64/lib/GENbzero.S b/arch/sparc64/lib/GENbzero.S index f9c71d64eba1..6a4f956a2f7a 100644 --- a/arch/sparc64/lib/GENbzero.S +++ b/arch/sparc64/lib/GENbzero.S | |||
@@ -10,7 +10,7 @@ | |||
10 | .align 4; \ | 10 | .align 4; \ |
11 | 99: retl; \ | 11 | 99: retl; \ |
12 | mov %o1, %o0; \ | 12 | mov %o1, %o0; \ |
13 | .section __ex_table; \ | 13 | .section __ex_table,"a";\ |
14 | .align 4; \ | 14 | .align 4; \ |
15 | .word 98b, 99b; \ | 15 | .word 98b, 99b; \ |
16 | .text; \ | 16 | .text; \ |
diff --git a/arch/sparc64/lib/NGbzero.S b/arch/sparc64/lib/NGbzero.S index f10e4529ee37..814d5f7a45e1 100644 --- a/arch/sparc64/lib/NGbzero.S +++ b/arch/sparc64/lib/NGbzero.S | |||
@@ -10,7 +10,7 @@ | |||
10 | .align 4; \ | 10 | .align 4; \ |
11 | 99: retl; \ | 11 | 99: retl; \ |
12 | mov %o1, %o0; \ | 12 | mov %o1, %o0; \ |
13 | .section __ex_table; \ | 13 | .section __ex_table,"a";\ |
14 | .align 4; \ | 14 | .align 4; \ |
15 | .word 98b, 99b; \ | 15 | .word 98b, 99b; \ |
16 | .text; \ | 16 | .text; \ |