diff options
Diffstat (limited to 'bootloader/telechips.c')
-rw-r--r-- | bootloader/telechips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/telechips.c b/bootloader/telechips.c index 7e00e52142..4d64532449 100644 --- a/bootloader/telechips.c +++ b/bootloader/telechips.c @@ -30,7 +30,7 @@ #include "lcd.h" #include "kernel.h" #include "thread.h" -#include "ata.h" +#include "storage.h" #include "fat.h" #include "disk.h" #include "font.h" @@ -206,7 +206,7 @@ void* main(void) printf("Version %s", version); printf("ATA"); - rc = ata_init(); + rc = storage_init(); if(rc) { reset_screen(); |