summaryrefslogtreecommitdiff
path: root/bootloader/gigabeat.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/gigabeat.c')
-rw-r--r--bootloader/gigabeat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/gigabeat.c b/bootloader/gigabeat.c
index 117dacc2b2..6b3a68be6e 100644
--- a/bootloader/gigabeat.c
+++ b/bootloader/gigabeat.c
@@ -29,7 +29,7 @@
29#include "lcd.h" 29#include "lcd.h"
30#include "kernel.h" 30#include "kernel.h"
31#include "thread.h" 31#include "thread.h"
32#include "ata.h" 32#include "storage.h"
33#include "fat.h" 33#include "fat.h"
34#include "disk.h" 34#include "disk.h"
35#include "font.h" 35#include "font.h"
@@ -75,7 +75,7 @@ void main(void)
75 (LCD_HEIGHT - SYSFONT_HEIGHT) / 2, msg); 75 (LCD_HEIGHT - SYSFONT_HEIGHT) / 2, msg);
76 lcd_update(); 76 lcd_update();
77 77
78 ata_enable(false); 78 storage_enable(false);
79 sleep(HZ/20); 79 sleep(HZ/20);
80 usb_enable(true); 80 usb_enable(true);
81 81
@@ -101,7 +101,7 @@ void main(void)
101 101
102 sleep(50); /* ATA seems to error without this pause */ 102 sleep(50); /* ATA seems to error without this pause */
103 103
104 rc = ata_init(); 104 rc = storage_init();
105 if(rc) 105 if(rc)
106 { 106 {
107 reset_screen(); 107 reset_screen();