diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-10-09 04:14:20 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-10-12 10:58:24 +0800 |
commit | 00bcaedd5c4063c677d16af264bbcb991fb9675c (patch) | |
tree | a46ae98a520907c7c04f1e26a864601773b305d1 /include/configs/x86-chromebook.h | |
parent | 21c9bcebd0e388a7acc2b1a3dc38127e0fd6182c (diff) |
x86: Clean up unused macros in the configuration headers
Legacy video driver macros are not needed. Clean them up.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/x86-chromebook.h')
-rw-r--r-- | include/configs/x86-chromebook.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/include/configs/x86-chromebook.h b/include/configs/x86-chromebook.h index 7fba7169db..4bcebfc3e0 100644 --- a/include/configs/x86-chromebook.h +++ b/include/configs/x86-chromebook.h @@ -53,14 +53,8 @@ #define CONFIG_SYS_WHITE_ON_BLACK -#ifdef CONFIG_DM_VIDEO -#define VIDEO_DEV "vidconsole" -#else -#define VIDEO_DEV "vga" -#endif - -#define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,i8042-kbd,serial\0" \ - "stdout=" VIDEO_DEV ",serial\0" \ - "stderr=" VIDEO_DEV ",serial\0" +#define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,i8042-kbd,serial\0" \ + "stdout=vidconsole,serial\0" \ + "stderr=vidconsole,serial\0" #endif |