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
This commit is contained in:
Michael Sevakis 2008-11-26 05:46:33 +00:00
parent 3e965fd6c3
commit 756bcc4bd5
3 changed files with 4 additions and 4 deletions

View file

@ -197,7 +197,7 @@ void audiohw_postinit(void)
as3514_write(AS3514_AUDIOSET3, AUDIOSET3_HPCM_off); as3514_write(AS3514_AUDIOSET3, AUDIOSET3_HPCM_off);
#ifdef CPU_PP #ifdef CPU_PP
ascodec_supressor_on(false); ascodec_suppressor_on(false);
#endif #endif
audiohw_mute(false); audiohw_mute(false);
@ -269,7 +269,7 @@ void audiohw_close(void)
audiohw_mute(true); audiohw_mute(true);
#ifdef CPU_PP #ifdef CPU_PP
ascodec_supressor_on(true); ascodec_suppressor_on(true);
#endif #endif
/* turn on common */ /* turn on common */

View file

@ -64,7 +64,7 @@ void audiohw_init(void)
audiohw_preinit(); audiohw_preinit();
} }
void ascodec_supressor_on(bool on) void ascodec_suppressor_on(bool on)
{ {
/* CHECK: Good for c200 too? */ /* CHECK: Good for c200 too? */
#ifdef SANSA_E200 #ifdef SANSA_E200

View file

@ -59,7 +59,7 @@ static inline void ascodec_unlock(void)
i2c_unlock(); i2c_unlock();
} }
extern void ascodec_supressor_on(bool on); extern void ascodec_suppressor_on(bool on);
#endif /* CPU_PP */ #endif /* CPU_PP */