summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/main.c b/apps/main.c
index 50597699c5..111c5d1e78 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -20,7 +20,7 @@
20 ****************************************************************************/ 20 ****************************************************************************/
21#include "config.h" 21#include "config.h"
22 22
23#include "ata.h" 23#include "storage.h"
24#include "disk.h" 24#include "disk.h"
25#include "fat.h" 25#include "fat.h"
26#include "lcd.h" 26#include "lcd.h"
@@ -289,7 +289,7 @@ static void init(void)
289#endif 289#endif
290 /* Must be done before any code uses the multi-screen APi */ 290 /* Must be done before any code uses the multi-screen APi */
291 gui_syncstatusbar_init(&statusbars); 291 gui_syncstatusbar_init(&statusbars);
292 ata_init(); 292 storage_init();
293 settings_reset(); 293 settings_reset();
294 settings_load(SETTINGS_ALL); 294 settings_load(SETTINGS_ALL);
295 gui_sync_wps_init(); 295 gui_sync_wps_init();
@@ -427,7 +427,7 @@ static void init(void)
427 } 427 }
428#endif 428#endif
429 429
430 rc = ata_init(); 430 rc = storage_init();
431 if(rc) 431 if(rc)
432 { 432 {
433#ifdef HAVE_LCD_BITMAP 433#ifdef HAVE_LCD_BITMAP