aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-generic')
-rw-r--r--include/asm-generic/vmlinux.lds.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index 92b73b6140ff..f92e730695c8 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -704,7 +704,7 @@
704 * matches the requirment of PAGE_ALIGNED_DATA. 704 * matches the requirment of PAGE_ALIGNED_DATA.
705 * 705 *
706 * use 0 as page_align if page_aligned data is not used */ 706 * use 0 as page_align if page_aligned data is not used */
707#define RW_DATA_SECTION(cacheline, nosave, pagealigned, inittask) \ 707#define RW_DATA_SECTION(cacheline, pagealigned, inittask) \
708 . = ALIGN(PAGE_SIZE); \ 708 . = ALIGN(PAGE_SIZE); \
709 .data : AT(ADDR(.data) - LOAD_OFFSET) { \ 709 .data : AT(ADDR(.data) - LOAD_OFFSET) { \
710 INIT_TASK(inittask) \ 710 INIT_TASK(inittask) \
@@ -712,7 +712,7 @@
712 READ_MOSTLY_DATA(cacheline) \ 712 READ_MOSTLY_DATA(cacheline) \
713 DATA_DATA \ 713 DATA_DATA \
714 CONSTRUCTORS \ 714 CONSTRUCTORS \
715 NOSAVE_DATA(nosave) \ 715 NOSAVE_DATA \
716 PAGE_ALIGNED_DATA(pagealigned) \ 716 PAGE_ALIGNED_DATA(pagealigned) \
717 } 717 }
718 718