diff options
author | Simon Glass <sjg@chromium.org> | 2014-04-10 20:01:27 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-05-29 17:45:31 -0400 |
commit | e1bf824dfd6881f6f633238c275bfa1e5d83c433 (patch) | |
tree | 4d43bd0b4d0fdae2f737c2ad9670005300dea87f /board/ait | |
parent | 6493ccc7cf2357081267effffa7d345e50d68d00 (diff) | |
download | u-boot-e1bf824dfd6881f6f633238c275bfa1e5d83c433.tar.gz |
Add cli_ prefix to readline functions
This makes it clear where the code resides.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/ait')
-rw-r--r-- | board/ait/cam_enc_4xx/cam_enc_4xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ait/cam_enc_4xx/cam_enc_4xx.c b/board/ait/cam_enc_4xx/cam_enc_4xx.c index 7c26ba0059..9aa1d7aece 100644 --- a/board/ait/cam_enc_4xx/cam_enc_4xx.c +++ b/board/ait/cam_enc_4xx/cam_enc_4xx.c @@ -777,7 +777,7 @@ static void ait_menu_read_env(char *name) sprintf(output, "%s old: %s value: ", name, getenv(name)); memset(cbuf, 0, CONFIG_SYS_CBSIZE); - readret = readline_into_buffer(output, cbuf, 0); + readret = cli_readline_into_buffer(output, cbuf, 0); if (readret >= 0) { ret = setenv(name, cbuf); |