Skip to content

Commit

Permalink
sparc64: Fix section attribute warnings.
Browse files Browse the repository at this point in the history
CSUM copy to/from user assembler was missing allocatable and
executable attributes for .fixup

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed May 29, 2009
1 parent d358418 commit 6373fff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/sparc/lib/csum_copy_from_user.S
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#define EX_LD(x) \
98: x; \
.section .fixup; \
.section .fixup, "ax"; \
.align 4; \
99: retl; \
mov -1, %o0; \
Expand Down
2 changes: 1 addition & 1 deletion arch/sparc/lib/csum_copy_to_user.S
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#define EX_ST(x) \
98: x; \
.section .fixup; \
.section .fixup,"ax"; \
.align 4; \
99: retl; \
mov -1, %o0; \
Expand Down

0 comments on commit 6373fff

Please sign in to comment.