diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:38 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 3c1ecde402ca5ba851ce846ceeeffc6e5ab30490 (patch) | |
tree | 3c28f60aae442e3686008ab9c6b5870f6ede11a7 /common/board_f.c | |
parent | 4575a77b7adaf95638d288d5b2429a44bebd6068 (diff) |
common: Move lcd_setmem() to lcd.h
This function relates to lcd.h and is about to become obsolete with the
driver-model conversion. Move it out of common.h
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/board_f.c')
-rw-r--r-- | common/board_f.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/board_f.c b/common/board_f.c index 4760d728f3..ed3cf6afbe 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -19,6 +19,7 @@ #include <fs.h> #include <i2c.h> #include <initcall.h> +#include <lcd.h> #include <malloc.h> #include <mapmem.h> #include <os.h> |