diff options
author | Simon Glass <sjg@chromium.org> | 2014-04-10 20:01:24 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-05-29 17:45:31 -0400 |
commit | eca86fad3d823c3c1e7e78b07752aa6a10e35283 (patch) | |
tree | 2cae72efd4bd45c45a0164b2c9cdf372a387b546 /include | |
parent | ae4223f4444d7e673ff6b4a066c8584858629025 (diff) | |
download | u-boot-imx-eca86fad3d823c3c1e7e78b07752aa6a10e35283.zip u-boot-imx-eca86fad3d823c3c1e7e78b07752aa6a10e35283.tar.gz u-boot-imx-eca86fad3d823c3c1e7e78b07752aa6a10e35283.tar.bz2 |
Rename hush to cli_hush
Hush is a command-line interpreter, so rename it to make that clearer.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/cli_hush.h (renamed from include/hush.h) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hush.h b/include/cli_hush.h index 595303a..4951eef 100644 --- a/include/hush.h +++ b/include/cli_hush.h @@ -5,8 +5,8 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#ifndef _HUSH_H_ -#define _HUSH_H_ +#ifndef _CLI_HUSH_H_ +#define _CLI_HUSH_H_ #define FLAG_EXIT_FROM_LOOP 1 #define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */ |