summaryrefslogtreecommitdiff
path: root/apps/gui/gwps.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/gwps.c')
-rw-r--r--apps/gui/gwps.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c
index 4d50740182..9b6d6b5558 100644
--- a/apps/gui/gwps.c
+++ b/apps/gui/gwps.c
@@ -39,7 +39,7 @@
39#include "audio.h" 39#include "audio.h"
40#include "usb.h" 40#include "usb.h"
41#include "status.h" 41#include "status.h"
42#include "ata.h" 42#include "storage.h"
43#include "screens.h" 43#include "screens.h"
44#include "playlist.h" 44#include "playlist.h"
45#ifdef HAVE_LCD_BITMAP 45#ifdef HAVE_LCD_BITMAP
@@ -184,7 +184,7 @@ long gui_wps_show(void)
184 if (wps_state.paused) { 184 if (wps_state.paused) {
185 settings_save(); 185 settings_save();
186#if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF) 186#if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF)
187 call_ata_idle_notifys(true); 187 call_storage_idle_notifys(true);
188#endif 188#endif
189 } 189 }
190 } 190 }
@@ -322,7 +322,7 @@ long gui_wps_show(void)
322 audio_pause(); 322 audio_pause();
323 settings_save(); 323 settings_save();
324#if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF) 324#if !defined(HAVE_RTC_RAM) && !defined(HAVE_SW_POWEROFF)
325 call_ata_idle_notifys(true); /* make sure resume info is saved */ 325 call_storage_idle_notifys(true); /* make sure resume info is saved */
326#endif 326#endif
327 } 327 }
328 break; 328 break;
@@ -701,7 +701,7 @@ long gui_wps_show(void)
701 } 701 }
702 702
703 if ( button ) 703 if ( button )
704 ata_spin(); 704 storage_spin();
705 } 705 }
706 return GO_TO_ROOT; /* unreachable - just to reduce compiler warnings */ 706 return GO_TO_ROOT; /* unreachable - just to reduce compiler warnings */
707} 707}