diff options
author | wdenk <wdenk> | 2003-12-07 23:55:12 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-12-07 23:55:12 +0000 |
commit | 9fd5e31fe0245c44a11d35a8603bb6b25c97b5c8 (patch) | |
tree | bbb665de89d40b6584076a60f138616fcf373c70 /board/trab | |
parent | 3bbc899fc0bba51db83e4b3960f32c3ad6ba813c (diff) | |
download | u-boot-imx-9fd5e31fe0245c44a11d35a8603bb6b25c97b5c8.zip u-boot-imx-9fd5e31fe0245c44a11d35a8603bb6b25c97b5c8.tar.gz u-boot-imx-9fd5e31fe0245c44a11d35a8603bb6b25c97b5c8.tar.bz2 |
* Patch by Pierre Aubert, 24 Nov 2003:
- add a return value for the fpga command
- add ide_preinit() function called in ide_init if CONFIG_IDE_PREINIT
is defined. If ide_preinit fails, ide_init is aborted.
- fix an endianess problem in fat.h
Diffstat (limited to 'board/trab')
-rw-r--r-- | board/trab/auto_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/trab/auto_update.c b/board/trab/auto_update.c index af37495..36fdf18 100644 --- a/board/trab/auto_update.c +++ b/board/trab/auto_update.c @@ -468,7 +468,7 @@ do_auto_update(void) * check whether a storage device is attached (assume that it's * a USB memory stick, since nothing else should be attached). */ - au_usb_stor_curr_dev = usb_stor_scan(1); + au_usb_stor_curr_dev = usb_stor_scan(0); if (au_usb_stor_curr_dev == -1) { debug ("No device found. Not initialized?\n"); return -1; |