diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-11-26 05:46:33 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-11-26 05:46:33 +0000 |
| commit | 756bcc4bd53b34371c073c8468cbd8c01ffe094a (patch) | |
| tree | 2521525b5ecbaafd91d06f5ae30f6f422cb26a82 /firmware/drivers/audio | |
| parent | 3e965fd6c3d9a02a48eef4d647145cec65e04e81 (diff) | |
| download | rockbox-756bcc4bd53b34371c073c8468cbd8c01ffe094a.zip rockbox-756bcc4bd53b34371c073c8468cbd8c01ffe094a.tar.gz rockbox-756bcc4bd53b34371c073c8468cbd8c01ffe094a.tar.bz2 rockbox-756bcc4bd53b34371c073c8468cbd8c01ffe094a.tar.xz | |
Fix misspelled function name. Thanks to Jens Arnold for noticing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19220 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/audio')
| -rw-r--r-- | firmware/drivers/audio/as3514.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c index 3985ea1..41577a3 100644 --- a/firmware/drivers/audio/as3514.c +++ b/firmware/drivers/audio/as3514.c @@ -197,7 +197,7 @@ void audiohw_postinit(void) as3514_write(AS3514_AUDIOSET3, AUDIOSET3_HPCM_off); #ifdef CPU_PP - ascodec_supressor_on(false); + ascodec_suppressor_on(false); #endif audiohw_mute(false); @@ -269,7 +269,7 @@ void audiohw_close(void) audiohw_mute(true); #ifdef CPU_PP - ascodec_supressor_on(true); + ascodec_suppressor_on(true); #endif /* turn on common */ |