Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 02b7dd12 authored by Ben Dooks's avatar Ben Dooks Committed by Russell King
Browse files

[ARM] 2926/1: .proc.info - postfix section with .init for `make buildcheck`



Patch from Ben Dooks

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

Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent bfe6815e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ SECTIONS
			*(.init.text)
			_einittext = .;
		__proc_info_begin = .;
			*(.proc.info)
			*(.proc.info.init)
		__proc_info_end = .;
		__arch_info_begin = .;
			*(.arch.info)
+1 −1
Original line number Diff line number Diff line
@@ -509,7 +509,7 @@ cpu_arm1020_name:

	.align

	.section ".proc.info", #alloc, #execinstr
	.section ".proc.info.init", #alloc, #execinstr

	.type	__arm1020_proc_info,#object
__arm1020_proc_info:
+1 −1
Original line number Diff line number Diff line
@@ -491,7 +491,7 @@ cpu_arm1020e_name:

	.align

	.section ".proc.info", #alloc, #execinstr
	.section ".proc.info.init", #alloc, #execinstr

	.type	__arm1020e_proc_info,#object
__arm1020e_proc_info:
+1 −1
Original line number Diff line number Diff line
@@ -473,7 +473,7 @@ cpu_arm1022_name:

	.align

	.section ".proc.info", #alloc, #execinstr
	.section ".proc.info.init", #alloc, #execinstr

	.type	__arm1022_proc_info,#object
__arm1022_proc_info:
+1 −1
Original line number Diff line number Diff line
@@ -469,7 +469,7 @@ cpu_arm1026_name:

	.align

	.section ".proc.info", #alloc, #execinstr
	.section ".proc.info.init", #alloc, #execinstr

	.type	__arm1026_proc_info,#object
__arm1026_proc_info:
Loading