From: Tim Abbott <tabbott@ksplice.com>
Date: Mon, 20 Jul 2009 14:30:24 +0000 (+0900)
Subject: sh: Clean up linker script using new BSS_SECTION macro.
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6bde607e699b9f3c6fa5e4a97d78c7778e643b3d;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

sh: Clean up linker script using new BSS_SECTION macro.

Updated to use the fixed BSS linker script macros from this
thread:

	http://www.spinics.net/lists/kernel/msg913238.html

Signed-off-by: Tim Abbott <tabbott@ksplice.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: linux-sh@vger.kernel.org
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
---

diff --git a/arch/sh/kernel/vmlinux.lds.S b/arch/sh/kernel/vmlinux.lds.S
index 674ed8feb8ae..80dc9f8d9412 100644
--- a/arch/sh/kernel/vmlinux.lds.S
+++ b/arch/sh/kernel/vmlinux.lds.S
@@ -93,8 +93,7 @@ SECTIONS
 
 	. = ALIGN(PAGE_SIZE);
 	__init_end = .;
-	BSS(PAGE_SIZE)
-	. = ALIGN(4);
+	BSS_SECTION(0, PAGE_SIZE, 4)
 	_ebss = .;			/* uClinux MTD sucks */
 	_end = . ;