diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-11-11 12:31:03 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2018-11-20 13:08:15 +0100 |
commit | b335e91bd1e92c685c4133671119fa37c4ab43cb (patch) | |
tree | ba593378e9141e0d44acfef437c50fb568bb73e7 /arch | |
parent | 6d4d9bea35f0838a56751b50f48ade414639d372 (diff) | |
download | u-boot-b335e91bd1e92c685c4133671119fa37c4ab43cb.tar.gz |
linux/sizes.h: sync from kernel
The kernel added SZ_4G macro in commit f2b9ba871b (arm64/kernel: kaslr:
reduce module randomization range to 4 GB).
Include linux/const.h for the _AC macro.
Drop a local SZ_4G definition in tegra code.
Cc: Tom Warren <twarren@nvidia.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-tegra/tegra186/nvtboot_mem.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/tegra186/nvtboot_mem.c b/arch/arm/mach-tegra/tegra186/nvtboot_mem.c index 5c9467bfe8..62142821a5 100644 --- a/arch/arm/mach-tegra/tegra186/nvtboot_mem.c +++ b/arch/arm/mach-tegra/tegra186/nvtboot_mem.c @@ -6,11 +6,10 @@ #include <common.h> #include <fdt_support.h> #include <fdtdec.h> +#include <linux/sizes.h> #include <asm/arch/tegra.h> #include <asm/armv8/mmu.h> -#define SZ_4G 0x100000000ULL - /* * Size of a region that's large enough to hold the relocated U-Boot and all * other allocations made around it (stack, heap, page tables, etc.) |