From: Michal Suchanek Date: Sat, 22 Oct 2022 21:22:01 +0000 (+0200) Subject: sandbox: Correctly define BITS_PER_LONG X-Git-Tag: baikal/mips/sdk5.8.2~5^2~27^2~5 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=3c83193ac9e781960d2dcf6be9e8511b550fd80a;p=uboot.git sandbox: Correctly define BITS_PER_LONG SANDBOX_BITS_PER_LONG is the number of bits in long on the sandbox platform. Signed-off-by: Michal Suchanek --- diff --git a/arch/sandbox/include/asm/types.h b/arch/sandbox/include/asm/types.h index c1a5d2af82..5f4b649ee3 100644 --- a/arch/sandbox/include/asm/types.h +++ b/arch/sandbox/include/asm/types.h @@ -18,11 +18,7 @@ typedef unsigned short umode_t; /* * Number of bits in a C 'long' on this architecture. */ -#ifdef CONFIG_PHYS_64BIT -#define BITS_PER_LONG 64 -#else /* CONFIG_PHYS_64BIT */ -#define BITS_PER_LONG 32 -#endif /* CONFIG_PHYS_64BIT */ +#define BITS_PER_LONG CONFIG_SANDBOX_BITS_PER_LONG #ifdef CONFIG_PHYS_64BIT typedef unsigned long long dma_addr_t;