mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
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:
parent
3e965fd6c3
commit
756bcc4bd5
3 changed files with 4 additions and 4 deletions
|
@ -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 */
|
||||
|
|
|
@ -64,7 +64,7 @@ void audiohw_init(void)
|
|||
audiohw_preinit();
|
||||
}
|
||||
|
||||
void ascodec_supressor_on(bool on)
|
||||
void ascodec_suppressor_on(bool on)
|
||||
{
|
||||
/* CHECK: Good for c200 too? */
|
||||
#ifdef SANSA_E200
|
||||
|
|
|
@ -59,7 +59,7 @@ static inline void ascodec_unlock(void)
|
|||
i2c_unlock();
|
||||
}
|
||||
|
||||
extern void ascodec_supressor_on(bool on);
|
||||
extern void ascodec_suppressor_on(bool on);
|
||||
|
||||
#endif /* CPU_PP */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue