Skip to content

Commit

Permalink
mn10300: convert to use __HEAD and HEAD_TEXT macros.
Browse files Browse the repository at this point in the history
This has the consequence of changing the section name use for head
code from ".text.head" to ".head.text".  Since this commit changes all
users in the architecture, this change should be harmless.

Signed-off-by: Tim Abbott <tabbott@mit.edu>
Cc: David Howells <dhowells@redhat.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Tim Abbott authored and Linus Torvalds committed Apr 26, 2009
1 parent 6f335ca commit 9760f8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion arch/mn10300/kernel/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* 2 of the Licence, or (at your option) any later version.
*/

#include <linux/init.h>
#include <linux/threads.h>
#include <linux/linkage.h>
#include <linux/serial_reg.h>
Expand All @@ -19,7 +20,7 @@
#include <asm/param.h>
#include <unit/serial.h>

.section .text.head,"ax"
__HEAD

###############################################################################
#
Expand Down
5 changes: 1 addition & 4 deletions arch/mn10300/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ SECTIONS
_stext = .;
_text = .; /* Text and read-only data */
.text : {
*(
.text.head
.text
)
HEAD_TEXT
TEXT_TEXT
SCHED_TEXT
LOCK_TEXT
Expand Down

0 comments on commit 9760f8f

Please sign in to comment.