diff options
| author | Steven A. Falco <[email protected]> | 2008-06-12 13:22:12 -0400 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2008-07-01 23:03:14 +0200 |
| commit | 75678c807a6272ecc5541eb32898c93887f08400 (patch) | |
| tree | 6bfbb1388af69cc3ec8627d305f74a097fdeb24a /include/asm-arm | |
| parent | 4928e97c8531283ca9b368b7c29a8a12e726562a (diff) | |
Make setenv() return status
Currently, the setenv function does not return an error code.
This patch allows to test for errors.
Signed-off-by: Steve Falco <[email protected]>
Diffstat (limited to 'include/asm-arm')
| -rw-r--r-- | include/asm-arm/u-boot-arm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-arm/u-boot-arm.h b/include/asm-arm/u-boot-arm.h index 41e7a8f7d3f..4ee5a327e5f 100644 --- a/include/asm-arm/u-boot-arm.h +++ b/include/asm-arm/u-boot-arm.h @@ -52,7 +52,7 @@ void setup_revision_tag (struct tag **params); /* To be fixed! */ /* ------------------------------------------------------------ */ /* common/cmd_nvedit.c */ -void setenv (char *, char *); +int setenv (char *, char *); /* cpu/.../interrupt.c */ void reset_timer_masked (void); |
