aboutsummaryrefslogtreecommitdiff
path: root/drivers/video/meson
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2020-05-17 12:29:19 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2020-05-17 21:59:53 +0200
commit714497e327e7304a2b67d5f780f415c6e1c300d0 (patch)
treed6182ed8caa040cc042b4f86a4abfaab65f68ff8 /drivers/video/meson
parent515f613253cf0a892c3a321770ab927fa3d925cf (diff)
downloadu-boot-714497e327e7304a2b67d5f780f415c6e1c300d0.zip
u-boot-714497e327e7304a2b67d5f780f415c6e1c300d0.tar.gz
u-boot-714497e327e7304a2b67d5f780f415c6e1c300d0.tar.bz2
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>
Diffstat (limited to 'drivers/video/meson')
-rw-r--r--drivers/video/meson/meson_vpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/meson/meson_vpu.c b/drivers/video/meson/meson_vpu.c
index aa8c0a9..ed47192 100644
--- a/drivers/video/meson/meson_vpu.c
+++ b/drivers/video/meson/meson_vpu.c
@@ -195,8 +195,8 @@ void meson_vpu_rsv_fb(void *fdt)
return;
#if defined(CONFIG_EFI_LOADER)
- efi_add_memory_map(meson_fb.base, meson_fb.fb_size >> EFI_PAGE_SHIFT,
- EFI_RESERVED_MEMORY_TYPE, false);
+ efi_add_memory_map(meson_fb.base, meson_fb.fb_size,
+ EFI_RESERVED_MEMORY_TYPE);
#endif
#if defined(CONFIG_VIDEO_DT_SIMPLEFB)
meson_vpu_setup_simplefb(fdt);