There are only two remaining standalone uses the legacy ALIGN macro.
Drop these by switching the .incbin's over to using FUNC()/END() which has
alignment handled internally. While the incbin's aren't technically one
single function, they behave as if they are.
Finally, expand ALIGN inside the legacy ENTRY() macro in order to remove ALIGN
itself.
No functional change.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
#include <asm/cpufeature.h>
#include <public/elfnote.h>
-#define ALIGN .align CONFIG_FUNCTION_ALIGNMENT, CODE_FILL
#define ENTRY(name) \
- ALIGN; \
+ .align CONFIG_FUNCTION_ALIGNMENT, CODE_FILL; \
GLOBAL(name)
#define GLOBAL(name) \
.globl name; \
* cmdline and reloc are written in C, and linked to be 32bit PIC with
* entrypoints at 0 and using the fastcall convention.
*/
- ALIGN
-cmdline_parse_early:
+FUNC_LOCAL(cmdline_parse_early)
.incbin "cmdline.bin"
+END(cmdline_parse_early)
- ALIGN
-reloc:
+FUNC_LOCAL(reloc)
.incbin "reloc.bin"
+END(reloc)
ENTRY(trampoline_start)
#include "trampoline.S"