summaryrefslogtreecommitdiff
path: root/firmware/powermgmt.c
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2006-12-06 10:24:59 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2006-12-06 10:24:59 +0000
commit77d039bab8591e991001bf8680f9915854483809 (patch)
treecf45a738b7c68e2fac18513965027901a4240787 /firmware/powermgmt.c
parent46a608bf07ec9d40bdd151e3283646682bb9e9bd (diff)
downloadrockbox-77d039bab8591e991001bf8680f9915854483809.tar.gz
rockbox-77d039bab8591e991001bf8680f9915854483809.zip
first step in audio driver unification: renaming the functions to audio_*
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11670 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/powermgmt.c')
-rw-r--r--firmware/powermgmt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/powermgmt.c b/firmware/powermgmt.c
index 17acd3d503..dcf8fd14ab 100644
--- a/firmware/powermgmt.c
+++ b/firmware/powermgmt.c
@@ -1326,11 +1326,11 @@ void shutdown_hw(void)
1326 1326
1327 mp3_shutdown(); 1327 mp3_shutdown();
1328#ifdef HAVE_UDA1380 1328#ifdef HAVE_UDA1380
1329 uda1380_close(); 1329 audiohw_close();
1330#elif defined(HAVE_TLV320) 1330#elif defined(HAVE_TLV320)
1331 tlv320_close(); 1331 audiohw_close();
1332#elif defined(HAVE_WM8758) || defined(HAVE_WM8975) | defined(HAVE_WM8731) 1332#elif defined(HAVE_WM8758) || defined(HAVE_WM8975) | defined(HAVE_WM8731)
1333 wmcodec_close(); 1333 audiohw_close();
1334#endif 1334#endif
1335 /* If HD is still active we try to wait for spindown, otherwise the 1335 /* If HD is still active we try to wait for spindown, otherwise the
1336 shutdown_timeout in power_thread_sleep will force a power off */ 1336 shutdown_timeout in power_thread_sleep will force a power off */