"Das U-Boot" Source Tree
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

boot: fdt_simplefb: Remove conditional compilation checks for VIDEO Kconfig

CONFIG_VIDEO conditional compilation checks are no longer needed since
FDT_SIMPLEFB Kconfig now depends on VIDEO Kconfig.

Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

authored by

Devarsh Thakkar and committed by
Anatolij Gustschin
944e515e c525423e

-2
-2
boot/fdt_simplefb.c
··· 103 103 return fdt_simplefb_configure_node(blob, off); 104 104 } 105 105 106 - #if IS_ENABLED(CONFIG_VIDEO) 107 106 int fdt_simplefb_enable_and_mem_rsv(void *blob) 108 107 { 109 108 int ret; ··· 118 117 119 118 return fdt_add_fb_mem_rsv(blob); 120 119 } 121 - #endif