aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-06-25 08:38:00 -0400
committerTom Rini <trini@konsulko.com>2022-06-25 08:38:00 -0400
commit75967970850a932a2359e167fd9950b01e9b99d3 (patch)
tree9caab0de4f5e3d2aaa3cf8fc0a4ff28ead895e16 /arch
parent625756083e3358744fbe0a60e0eedc009041782d (diff)
parent5bc6f8c2a97e5dd3b94e8c3cff3a77c2f5bffd8d (diff)
downloadu-boot-75967970850a932a2359e167fd9950b01e9b99d3.zip
u-boot-75967970850a932a2359e167fd9950b01e9b99d3.tar.gz
u-boot-75967970850a932a2359e167fd9950b01e9b99d3.tar.bz2
Merge tag 'video-20220625' of https://source.denx.de/u-boot/custodians/u-boot-videoWIP/25Jun2022
- fix building sandbox with NO_SDL=1 - fix stb TrueType to check return value of STBTT_malloc() - remove not required DM_REGULATOR test in stm32 dsi driver
Diffstat (limited to 'arch')
-rw-r--r--arch/sandbox/include/asm/sdl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/sdl.h b/arch/sandbox/include/asm/sdl.h
index e271a84..56dcb84 100644
--- a/arch/sandbox/include/asm/sdl.h
+++ b/arch/sandbox/include/asm/sdl.h
@@ -94,6 +94,11 @@ static inline int sandbox_sdl_init_display(int width, int height, int log2_bpp,
return -ENODEV;
}
+static inline int sandbox_sdl_remove_display(void)
+{
+ return -ENODEV;
+}
+
static inline int sandbox_sdl_sync(void *lcd_base)
{
return -ENODEV;