diff options
author | Wolfgang Denk <wd@denx.de> | 2008-01-09 23:06:57 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-01-09 23:06:57 +0100 |
commit | fc16904ce17bb9f12db469afbaf73bbd178cc686 (patch) | |
tree | fd544487227de95bf7d21e1bdababde84d9a4ba0 /common | |
parent | 808da52f6202ce2ab7197b03ed405baa376e2472 (diff) | |
parent | ecc198c9b9522aa766235b7780f8ef7e01d0d0e2 (diff) | |
download | u-boot-imx-fc16904ce17bb9f12db469afbaf73bbd178cc686.zip u-boot-imx-fc16904ce17bb9f12db469afbaf73bbd178cc686.tar.gz u-boot-imx-fc16904ce17bb9f12db469afbaf73bbd178cc686.tar.bz2 |
Merge branch 'master' of /home/wd/git/u-boot/custodians
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_nvedit.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index 6770408..dd263b6 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -81,8 +81,6 @@ extern void env_crc_update (void); /************************************************************************ ************************************************************************/ -static int envmatch (uchar *, int); - /* * Table with supported baudrates (defined in config_xyz.h) */ @@ -576,8 +574,7 @@ int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) * If the names match, return the index for the value2, else NULL. */ -static int -envmatch (uchar *s1, int i2) +int envmatch (uchar *s1, int i2) { while (*s1 == env_get_char(i2++)) |