imx233/bootloader: fix comment about disk init

Change-Id: I44a676237564490771a1ed2c81e9434fc6c6f74d
diff --git a/bootloader/imx233.c b/bootloader/imx233.c
index 6f07d1f..af8db4e 100644
--- a/bootloader/imx233.c
+++ b/bootloader/imx233.c
@@ -174,10 +174,10 @@
     if(ret < 0)
         error(EATA, ret, true);
 
-    /* NOTE: allow disk_init and disk_mount_all to fail since we can do USB after.
-     * We need this order to determine the correct logical sector size */
     disk_init_subsystem();
 
+    /* NOTE: disk_mount_all to fail since we can do USB after.
+     * We need this order to determine the correct logical sector size */
     if((ret = disk_mount_all()) <= 0)
         error(EDISK, ret, false);