diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-14 16:37:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-14 16:37:29 -0400 |
commit | 6c118e43dc513a7118b49b9ff953fe61e14515dc (patch) | |
tree | ef654ba1982c17a516697d25b3d0405acb6aeac1 /arch/avr32/kernel/vmlinux.lds.S | |
parent | 847106ff628805e1a0aa91e7f53381f3fdfcd839 (diff) | |
parent | 72f6befeea7dc634a83219287d5b874734b85637 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6: (31 commits)
avr32: Fix typo of IFSR in a comment in the PIO header file
avr32: Power Management support ("standby" and "mem" modes)
avr32: Add system device for the internal interrupt controller (intc)
avr32: Add simple SRAM allocator
avr32: Enable SDRAMC clock at startup
rtc-at32ap700x: Enable wakeup
macb: Basic suspend/resume support
atmel_serial: Drain console TX shifter before suspending
atmel_serial: Fix build on avr32 with CONFIG_PM enabled
avr32: Use a quicklist for PTE allocation as well
avr32: Use a quicklist for PGD allocation
avr32: Cover the kernel page tables in the user PGDs
avr32: Store virtual addresses in the PGD
avr32: Remove useless zeroing of swapper_pg_dir at startup
avr32: Clean up and optimize the TLB operations
avr32: Rename at32ap.c -> pdc.c
avr32: Move setup_platform() into chip-specific file
avr32: Kill special exception handler sections
avr32: Kill unneeded #include <asm/pgalloc.h> from asm/mmu_context.h
avr32: Clean up time.c #includes
...
Diffstat (limited to 'arch/avr32/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/avr32/kernel/vmlinux.lds.S | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/arch/avr32/kernel/vmlinux.lds.S b/arch/avr32/kernel/vmlinux.lds.S index 481cfd40c053..5d25d8eeb750 100644 --- a/arch/avr32/kernel/vmlinux.lds.S +++ b/arch/avr32/kernel/vmlinux.lds.S | |||
@@ -68,14 +68,6 @@ SECTIONS | |||
68 | _evba = .; | 68 | _evba = .; |
69 | _text = .; | 69 | _text = .; |
70 | *(.ex.text) | 70 | *(.ex.text) |
71 | . = 0x50; | ||
72 | *(.tlbx.ex.text) | ||
73 | . = 0x60; | ||
74 | *(.tlbr.ex.text) | ||
75 | . = 0x70; | ||
76 | *(.tlbw.ex.text) | ||
77 | . = 0x100; | ||
78 | *(.scall.text) | ||
79 | *(.irq.text) | 71 | *(.irq.text) |
80 | KPROBES_TEXT | 72 | KPROBES_TEXT |
81 | TEXT_TEXT | 73 | TEXT_TEXT |
@@ -107,6 +99,10 @@ SECTIONS | |||
107 | */ | 99 | */ |
108 | *(.data.init_task) | 100 | *(.data.init_task) |
109 | 101 | ||
102 | /* Then, the page-aligned data */ | ||
103 | . = ALIGN(PAGE_SIZE); | ||
104 | *(.data.page_aligned) | ||
105 | |||
110 | /* Then, the cacheline aligned data */ | 106 | /* Then, the cacheline aligned data */ |
111 | . = ALIGN(L1_CACHE_BYTES); | 107 | . = ALIGN(L1_CACHE_BYTES); |
112 | *(.data.cacheline_aligned) | 108 | *(.data.cacheline_aligned) |