diff options
| author | Rafal Jaworowski <raj@semihalf.com> | 2008-01-09 18:05:27 +0100 | 
|---|---|---|
| committer | Rafal Jaworowski <raj@semihalf.com> | 2008-01-09 18:05:27 +0100 | 
| commit | 26a41790f8eba19ad450e18ae91351daf485b3e2 (patch) | |
| tree | 54995954fbdd7cb9c19f9f0eb491f4e3dbac1998 /common/cmd_nvedit.c | |
| parent | 6007f3251c0967adc13f2ed8be1b924ddc30124d (diff) | |
| download | olio-uboot-2014.01-26a41790f8eba19ad450e18ae91351daf485b3e2.tar.xz olio-uboot-2014.01-26a41790f8eba19ad450e18ae91351daf485b3e2.zip | |
Globalize envmatch()
The newly introduced API (routines related to env vars) will need to call
it.
Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
Diffstat (limited to 'common/cmd_nvedit.c')
| -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 677040881..dd263b666 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++)) |