summaryrefslogtreecommitdiffstats
path: root/flash/bootbox/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'flash/bootbox/main.c')
-rw-r--r--flash/bootbox/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/flash/bootbox/main.c b/flash/bootbox/main.c
index 2bd3fea115..f53a5edda2 100644
--- a/flash/bootbox/main.c
+++ b/flash/bootbox/main.c
@@ -31,7 +31,7 @@
#include "lcd.h"
#include "kernel.h"
#include "thread.h"
-#include "ata.h"
+#include "storage.h"
#include "disk.h"
#include "font.h"
#include "adc.h"
@@ -168,7 +168,7 @@ void main(void)
}
#endif
- rc = ata_init();
+ rc = storage_init();
if(rc)
{
#ifdef HAVE_LCD_BITMAP
@@ -179,7 +179,7 @@ void main(void)
lcd_update();
while(!(button_get(true) & BUTTON_REL));
#endif
- panicf("ata: %d", rc);
+ panicf("storage: %d", rc);
}
usb_start_monitoring();