summaryrefslogtreecommitdiff
path: root/bootloader/mrobe500.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/mrobe500.c')
-rw-r--r--bootloader/mrobe500.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bootloader/mrobe500.c b/bootloader/mrobe500.c
index 8389d11b4b..f92ff4bf84 100644
--- a/bootloader/mrobe500.c
+++ b/bootloader/mrobe500.c
@@ -26,7 +26,7 @@
26#include "lcd.h" 26#include "lcd.h"
27#include "kernel.h" 27#include "kernel.h"
28#include "thread.h" 28#include "thread.h"
29#include "ata.h" 29#include "storage.h"
30#include "fat.h" 30#include "fat.h"
31#include "disk.h" 31#include "disk.h"
32#include "font.h" 32#include "font.h"
@@ -229,13 +229,13 @@ void main(void)
229 lcd_update(); 229 lcd_update();
230 230
231 ide_power_enable(true); 231 ide_power_enable(true);
232 ata_enable(false); 232 storage_enable(false);
233 sleep(HZ/20); 233 sleep(HZ/20);
234 usb_enable(true); 234 usb_enable(true);
235 235
236 while (usb_detect() == USB_INSERTED) 236 while (usb_detect() == USB_INSERTED)
237 { 237 {
238 ata_spin(); /* Prevent the drive from spinning down */ 238 storage_spin(); /* Prevent the drive from spinning down */
239 sleep(HZ); 239 sleep(HZ);
240 } 240 }
241 241
@@ -248,7 +248,7 @@ void main(void)
248 mrdebug(); 248 mrdebug();
249#endif 249#endif
250 printf("ATA"); 250 printf("ATA");
251 rc = ata_init(); 251 rc = storage_init();
252 if(rc) 252 if(rc)
253 { 253 {
254 reset_screen(); 254 reset_screen();