Bladeren bron

[ARM] 2924/3: taglist - postfix section with .init for `make buildcheck`

Patch from Ben Dooks

The `make buildcheck` is erroneously reporting that the taglist
is referencing items in the .init section as it is not itself
postfixed with .init

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Ben Dooks 20 jaren geleden
bovenliggende
commit
9506057fca
2 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 1 1
      arch/arm/kernel/vmlinux.lds.S
  2. 1 1
      include/asm-arm/setup.h

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

@@ -29,7 +29,7 @@ SECTIONS
 			*(.arch.info)
 		__arch_info_end = .;
 		__tagtable_begin = .;
-			*(.taglist)
+			*(.taglist.init)
 		__tagtable_end = .;
 		. = ALIGN(16);
 		__setup_start = .;

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

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