Browse Source

sh: Fix up typo in arch/sh/kernel/vmlinux.lds.S

.init_ramfs ought to be .init.ramfs, fix it up.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Paul Mundt 16 years ago
parent
commit
d9d674e500
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/sh/kernel/vmlinux.lds.S

+ 1 - 1
arch/sh/kernel/vmlinux.lds.S

@@ -127,7 +127,7 @@ SECTIONS
 
 
 #ifdef CONFIG_BLK_DEV_INITRD
 #ifdef CONFIG_BLK_DEV_INITRD
 	. = ALIGN(PAGE_SIZE);
 	. = ALIGN(PAGE_SIZE);
-	.init.ramfs : AT(ADDR(.init_ramfs) - LOAD_OFFSET) {
+	.init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
 		__initramfs_start = .;
 		__initramfs_start = .;
 		*(.init.ramfs)
 		*(.init.ramfs)
 		__initramfs_end = .;
 		__initramfs_end = .;