Skip to content
Snippets Groups Projects
Commit c3093650 authored by Simon Glass's avatar Simon Glass Committed by Minkyu Kang
Browse files

exynos: Allow tizen to be built without an LCD


This file currently requires an LCD. Adjust it to work without one.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Signed-off-by: default avatarMinkyu Kang <mk7.kang@samsung.com>
parent 141c7435
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
#define HD_RESOLUTION 0 #define HD_RESOLUTION 0
#ifdef CONFIG_LCD
void get_tizen_logo_info(vidinfo_t *vid); void get_tizen_logo_info(vidinfo_t *vid);
#endif
#endif /* _LIBTIZEN_H_ */ #endif /* _LIBTIZEN_H_ */
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include "tizen_logo_16bpp.h" #include "tizen_logo_16bpp.h"
#include "tizen_logo_16bpp_gzip.h" #include "tizen_logo_16bpp_gzip.h"
#ifdef CONFIG_LCD
void get_tizen_logo_info(vidinfo_t *vid) void get_tizen_logo_info(vidinfo_t *vid)
{ {
switch (vid->vl_bpix) { switch (vid->vl_bpix) {
...@@ -31,3 +32,4 @@ void get_tizen_logo_info(vidinfo_t *vid) ...@@ -31,3 +32,4 @@ void get_tizen_logo_info(vidinfo_t *vid)
break; break;
} }
} }
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment