On Wed, Apr 12, 2023 at 01:22:32PM +0200, Ahmad Fatoum wrote: > Apparently, .dword is not supported for 32-bit ARM builds. > > Let's define ASM_PTR that expands to either .dword or .word and use > that instead. > > The definition is taken from RISCV_PTR in arch/riscv/include/asm/asm.h. > > Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> > --- > Sascha, how about this? > --- > include/asm-generic/pointer.h | 30 ++++++++++++++++++++++++++++++ > scripts/gen-dtb-s | 5 +++-- > 2 files changed, 33 insertions(+), 2 deletions(-) > create mode 100644 include/asm-generic/pointer.h > > diff --git a/include/asm-generic/pointer.h b/include/asm-generic/pointer.h > new file mode 100644 > index 000000000000..a0ea084b983c > --- /dev/null > +++ b/include/asm-generic/pointer.h > @@ -0,0 +1,30 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > +#ifndef __ASM_GENERIC_PTR_H___ > +#define __ASM_GENERIC_PTR_H___ > + > +#if __SIZEOF_POINTER__ == 8 > +#ifdef __ASSEMBLY__ > +#define ASM_PTR .dword > +#define ASM_SZPTR 8 > +#define ASM_LGPTR 3 > +#else > +#define ASM_PTR ".dword" We're still not there. .dword is not known by x86. I changed to .quad now. Sascha -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |