diff options
author | Dario Binacchi <dariobin@libero.it> | 2020-02-22 14:05:49 +0100 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2020-03-03 13:08:14 +0530 |
commit | 449c5e52110e7cd91c9f32a041ca6428cadf6807 (patch) | |
tree | 805d0872c05e0ff0acaeb79bbaa71b49c9fb859b /include/configs | |
parent | 0aff8e261547f761b0c20a75e7cdd59c46d2478b (diff) |
board: brxre1: fix building errors
Fix building errors if CONFIG_DM_VIDEO is enabled. This is the only
u-boot board that enables CONFIG_AM335X_LCD and from which I started
to develop the version of the frame buffer driver that supports the
driver model.
Signed-off-by: Dario Binacchi <dariobin@libero.it>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/brxre1.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/brxre1.h b/include/configs/brxre1.h index ea15912c90..006663373b 100644 --- a/include/configs/brxre1.h +++ b/include/configs/brxre1.h @@ -14,7 +14,9 @@ #include <configs/bur_cfg_common.h> #include <configs/bur_am335x_common.h> /* ------------------------------------------------------------------------- */ +#if !defined(CONFIG_AM335X_LCD) #define CONFIG_AM335X_LCD +#endif #define LCD_BPP LCD_COLOR32 /* memory */ |