diff options
author | Nikita Kiryanov <nikita@compulab.co.il> | 2014-12-08 17:14:45 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2015-01-10 17:53:59 +0100 |
commit | 904672ee489280cf26793e0a590505a2659dae09 (patch) | |
tree | f59149f4e0e8f9eedf796f6696a5eab256abef42 /include/lcd.h | |
parent | 88b326a31e4b7c2b6550980944b9b72f40c1bda0 (diff) | |
download | u-boot-imx-904672ee489280cf26793e0a590505a2659dae09.zip u-boot-imx-904672ee489280cf26793e0a590505a2659dae09.tar.gz u-boot-imx-904672ee489280cf26793e0a590505a2659dae09.tar.bz2 |
lcd: refactor lcd console stuff into its own file
common/lcd.c is a mix of code portions that do different but related
things. To improve modularity, the various code portions should be split
into their own modules. Separate lcd console code into its own file.
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/lcd.h')
-rw-r--r-- | include/lcd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lcd.h b/include/lcd.h index 2235b9b..160f940 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -12,6 +12,7 @@ #ifndef _LCD_H_ #define _LCD_H_ +#include <lcd_console.h> extern char lcd_is_enabled; |