summaryrefslogtreecommitdiff
path: root/bootloader/imx233.c
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2013-10-20 18:11:24 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2013-10-21 01:23:13 +0200
commitefc591e42d967c3324787f2ef4865055d6894565 (patch)
tree8459c4891aa8bed78b41207674e39f1240760cc8 /bootloader/imx233.c
parente21d8f59da129d2fa4ab9139ee6cfa1a7f78e275 (diff)
downloadrockbox-efc591e42d967c3324787f2ef4865055d6894565.tar.gz
rockbox-efc591e42d967c3324787f2ef4865055d6894565.zip
imx233/bootloader: fix comment about disk init
Change-Id: I44a676237564490771a1ed2c81e9434fc6c6f74d
Diffstat (limited to 'bootloader/imx233.c')
-rw-r--r--bootloader/imx233.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/imx233.c b/bootloader/imx233.c
index 6f07d1f1c9..af8db4e78f 100644
--- a/bootloader/imx233.c
+++ b/bootloader/imx233.c
@@ -174,10 +174,10 @@ void main(uint32_t arg, uint32_t addr)
174 if(ret < 0) 174 if(ret < 0)
175 error(EATA, ret, true); 175 error(EATA, ret, true);
176 176
177 /* NOTE: allow disk_init and disk_mount_all to fail since we can do USB after.
178 * We need this order to determine the correct logical sector size */
179 disk_init_subsystem(); 177 disk_init_subsystem();
180 178
179 /* NOTE: disk_mount_all to fail since we can do USB after.
180 * We need this order to determine the correct logical sector size */
181 if((ret = disk_mount_all()) <= 0) 181 if((ret = disk_mount_all()) <= 0)
182 error(EDISK, ret, false); 182 error(EDISK, ret, false);
183 183