[PATCH master v1 1/6] firmware: reference pointer alignment defined in <asm-generic/pointer.h>
Ahmad Fatoum
a.fatoum at pengutronix.de
Mon Jun 26 08:33:32 PDT 2023
We already define pointer size constants for use in assembly. Make use
of this header. No functional change.
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
firmware/Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/firmware/Makefile b/firmware/Makefile
index efdd5c0da541..8050d0418d33 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -41,13 +41,13 @@ obj-pbl-y := $(addsuffix .gen.o, $(firmware-y))
FWNAME = $(patsubst $(obj)/%.extgen.S,%,$(patsubst $(obj)/%.gen.S,%,$@))
FWSTR = $(subst /,_,$(subst .,_,$(subst -,_,$(FWNAME))))
-ASM_ALIGN = $(if $(CONFIG_64BIT),3,2)
filechk_fwbin = { \
echo "/* Generated by $(src)/Makefile */" ;\
+ echo "\#include <asm-generic/pointer.h>" ;\
echo ".section .note.GNU-stack,\"\",%progbits" ;\
echo " .section $2,\"$3\"" ;\
- echo " .p2align $(ASM_ALIGN)" ;\
+ echo " .p2align $(ASM_LGPTR)" ;\
echo ".global _fw_$(FWSTR)_start" ;\
echo "_fw_$(FWSTR)_start:" ;\
echo " .incbin \"$(fwdir)/$(FWNAME)\"" ;\
@@ -57,7 +57,7 @@ filechk_fwbin = { \
__fwbin_sha = { \
echo " .section .rodata.$(FWSTR).sha" ;\
- echo " .p2align $(ASM_ALIGN)" ;\
+ echo " .p2align $(ASM_LGPTR)" ;\
echo ".global _fw_$(FWSTR)_sha_start" ;\
echo "_fw_$(FWSTR)_sha_start:" ;\
echo " .incbin \"$(fwobjdir)/$(FWNAME).sha.bin\"" ;\
--
2.39.2
More information about the barebox
mailing list