diff options
author | Marcoen Hirschberg <marcoen@gmail.com> | 2006-12-06 10:24:59 +0000 |
---|---|---|
committer | Marcoen Hirschberg <marcoen@gmail.com> | 2006-12-06 10:24:59 +0000 |
commit | 77d039bab8591e991001bf8680f9915854483809 (patch) | |
tree | cf45a738b7c68e2fac18513965027901a4240787 /firmware/powermgmt.c | |
parent | 46a608bf07ec9d40bdd151e3283646682bb9e9bd (diff) |
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.c | 6 |
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) mp3_shutdown(); #ifdef HAVE_UDA1380 - uda1380_close(); + audiohw_close(); #elif defined(HAVE_TLV320) - tlv320_close(); + audiohw_close(); #elif defined(HAVE_WM8758) || defined(HAVE_WM8975) | defined(HAVE_WM8731) - wmcodec_close(); + audiohw_close(); #endif /* If HD is still active we try to wait for spindown, otherwise the shutdown_timeout in power_thread_sleep will force a power off */ |