diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-08-10 01:58:22 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-08-10 01:58:22 +0200 |
commit | a3d9181e00cca80287d7243c4c1dcf981c2969d3 (patch) | |
tree | afaf813fc2d1cd75fbf08e149da3fc22ab51556a | |
parent | 6587f7e1e98bfcb7910a47bae2eb51e9a5fbd4da (diff) | |
download | u-boot-imx-a3d9181e00cca80287d7243c4c1dcf981c2969d3.zip u-boot-imx-a3d9181e00cca80287d7243c4c1dcf981c2969d3.tar.gz u-boot-imx-a3d9181e00cca80287d7243c4c1dcf981c2969d3.tar.bz2 |
Fix compiler warning for TRAB board.
Patch by Martin Krause, 07 Aug 2006
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | board/trab/trab.c | 8 |
2 files changed, 8 insertions, 3 deletions
@@ -2,6 +2,9 @@ Changes since U-Boot 1.1.4: ====================================================================== +* Fix compiler warning for TRAB board. + Patch by Martin Krause, 07 Aug 2006 + * Prevent USB commands from working when USB is stopped. * Add rudimentary handling of alternate settings of USB interfaces. diff --git a/board/trab/trab.c b/board/trab/trab.c index 26e52d2..d8a726b 100644 --- a/board/trab/trab.c +++ b/board/trab/trab.c @@ -175,9 +175,11 @@ int misc_init_r (void) #endif /* CONFIG_VERSION_VARIABLE */ #ifdef CONFIG_AUTO_UPDATE - extern int do_auto_update(void); - /* this has priority over all else */ - do_auto_update(); + { + extern int do_auto_update(void); + /* this has priority over all else */ + do_auto_update(); + } #endif for (i = 0; i < KEYBD_KEY_NUM; ++i) { |