efi_loader: round the memory area in efi_add_memory_map()
authorMichael Walle <michael@walle.cc>
Sun, 17 May 2020 10:29:19 +0000 (12:29 +0200)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 17 May 2020 19:59:53 +0000 (21:59 +0200)
commit714497e327e7304a2b67d5f780f415c6e1c300d0
treed6182ed8caa040cc042b4f86a4abfaab65f68ff8
parent515f613253cf0a892c3a321770ab927fa3d925cf
efi_loader: round the memory area in efi_add_memory_map()

Virtually all callers of this function do the rounding on their own.
Some do it right, some don't. Instead of doing this in each caller,
do the rounding in efi_add_memory_map(). Change the size parameter
to bytes instead of pages and remove aligning and size calculation in
all callers.

There is no more need to make the original efi_add_memory_map() (which
takes pages as size) available outside the module. Thus rename it to
efi_add_memory_map_pg() and make it static to prevent further misuse
outside the module.

Signed-off-by: Michael Walle <michael@walle.cc>
Add missing comma in sunxi_display.c.
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
12 files changed:
arch/arm/cpu/armv8/fsl-layerscape/cpu.c
arch/arm/cpu/armv8/fsl-layerscape/fdt.c
arch/arm/mach-meson/board-common.c
arch/x86/lib/e820.c
board/raspberrypi/rpi/rpi.c
cmd/bootefi.c
drivers/video/meson/meson_vpu.c
drivers/video/sunxi/sunxi_de2.c
drivers/video/sunxi/sunxi_display.c
include/efi_loader.h
lib/efi_loader/efi_memory.c
lib/efi_loader/efi_runtime.c