ソースを参照

[AVR32] Fix section mismatch .taglist -> .init.text

Rename .taglist to .taglist.init to silence section mismatch warnings.
The .taglist.init section was already placed in the .init output
section along with .init.text, so the warning didn't indicate any real
problems.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen 18 年 前
コミット
b3cfe0cb37
2 ファイル変更2 行追加2 行削除
  1. 1 1
      arch/avr32/kernel/vmlinux.lds.c
  2. 1 1
      include/asm-avr32/setup.h

+ 1 - 1
arch/avr32/kernel/vmlinux.lds.c

@@ -35,7 +35,7 @@ SECTIONS
 			_einittext = .;
 			_einittext = .;
 		. = ALIGN(4);
 		. = ALIGN(4);
 		__tagtable_begin = .;
 		__tagtable_begin = .;
-			*(.taglist)
+			*(.taglist.init)
 		__tagtable_end = .;
 		__tagtable_end = .;
 			*(.init.data)
 			*(.init.data)
 		. = ALIGN(16);
 		. = ALIGN(16);

+ 1 - 1
include/asm-avr32/setup.h

@@ -110,7 +110,7 @@ struct tagtable {
 	int	(*parse)(struct tag *);
 	int	(*parse)(struct tag *);
 };
 };
 
 
-#define __tag __attribute_used__ __attribute__((__section__(".taglist")))
+#define __tag __attribute_used__ __attribute__((__section__(".taglist.init")))
 #define __tagtable(tag, fn)						\
 #define __tagtable(tag, fn)						\
 	static struct tagtable __tagtable_##fn __tag = { tag, fn }
 	static struct tagtable __tagtable_##fn __tag = { tag, fn }