Skip to content

Commit

Permalink
Rename special text sections in arch/frv from .text.XXX to .text..XXX.
Browse files Browse the repository at this point in the history
Signed-off-by: Denys Vlasenko <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
Denys Vlasenko authored and michal42 committed Mar 3, 2010
1 parent a7df554 commit b6f4e45
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion arch/frv/kernel/break.S
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ __break_trace_through_exceptions:
# entry point for Break Exceptions/Interrupts
#
###############################################################################
.section .text.break
.section .text..break
.balign 4
.globl __entry_break
__entry_break:
Expand Down
2 changes: 1 addition & 1 deletion arch/frv/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

#define nr_syscalls ((syscall_table_size)/4)

.section .text.entry
.section .text..entry
.balign 4

.macro LEDS val
Expand Down
2 changes: 1 addition & 1 deletion arch/frv/kernel/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ __head_end:
.size _boot, .-_boot

# provide a point for GDB to place a break
.section .text.start,"ax"
.section .text..start,"ax"
.globl _start
.balign 4
_start:
Expand Down
8 changes: 4 additions & 4 deletions arch/frv/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ SECTIONS
_text = .;
_stext = .;
.text : {
*(.text.start)
*(.text.entry)
*(.text.break)
*(.text.tlbmiss)
*(.text..start)
*(.text..entry)
*(.text..break)
*(.text..tlbmiss)
TEXT_TEXT
SCHED_TEXT
LOCK_TEXT
Expand Down
2 changes: 1 addition & 1 deletion arch/frv/mm/tlb-miss.S
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <asm/pgtable.h>
#include <asm/spr-regs.h>

.section .text.tlbmiss
.section .text..tlbmiss
.balign 4

.globl __entry_insn_mmu_miss
Expand Down

0 comments on commit b6f4e45

Please sign in to comment.