diff options
author | Marian Balakowicz <m8@semihalf.com> | 2008-02-21 17:27:49 +0100 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2008-02-21 17:27:49 +0100 |
commit | 5583cbf736474ef754e128a54fb78632f57b48fd (patch) | |
tree | 7b2a426879b263c716401b3499f1a43fc647057b /common/cmd_usb.c | |
parent | 2242f5369822bc7780db95c47985bb408ea9157b (diff) | |
download | u-boot-imx-5583cbf736474ef754e128a54fb78632f57b48fd.zip u-boot-imx-5583cbf736474ef754e128a54fb78632f57b48fd.tar.gz u-boot-imx-5583cbf736474ef754e128a54fb78632f57b48fd.tar.bz2 |
[new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'common/cmd_usb.c')
-rw-r--r-- | common/cmd_usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_usb.c b/common/cmd_usb.c index 2d7a85a..3f1aa7d 100644 --- a/common/cmd_usb.c +++ b/common/cmd_usb.c @@ -388,7 +388,7 @@ int do_usbboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) hdr = (image_header_t *)addr; - if (!image_get_magic (hdr)) { + if (!image_check_magic (hdr)) { printf("\n** Bad Magic Number **\n"); return 1; } |