Skip to content

Commit

Permalink
m68knommu: Use INIT_TASK_DATA and CACHELINE_ALIGNED_DATA.
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Abbott <tabbott@ksplice.com>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
  • Loading branch information
Tim Abbott authored and Greg Ungerer committed Dec 4, 2009
1 parent d6cd1f0 commit 49612a5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions arch/m68knommu/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include <asm-generic/vmlinux.lds.h>
#include <asm/page.h>
#include <asm/thread_info.h>

#if defined(CONFIG_RAMKERNEL)
#define RAM_START CONFIG_KERNELBASE
Expand Down Expand Up @@ -148,10 +149,8 @@ SECTIONS {
. = ALIGN(4);
_sdata = . ;
DATA_DATA
. = ALIGN(32);
*(.data.cacheline_aligned)
. = ALIGN(8192) ;
*(.data.init_task)
CACHELINE_ALIGNED_DATA(32)
INIT_TASK_DATA(THREAD_SIZE)
_edata = . ;
} > DATA

Expand Down

0 comments on commit 49612a5

Please sign in to comment.