mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Fix c200 warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19215 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3511d94031
commit
8d84a81a1e
1 changed files with 3 additions and 0 deletions
|
|
@ -66,6 +66,7 @@ void audiohw_init(void)
|
|||
|
||||
void ascodec_supressor_on(bool on)
|
||||
{
|
||||
/* CHECK: Good for c200 too? */
|
||||
#ifdef SANSA_E200
|
||||
if (on) {
|
||||
/* Set pop prevention */
|
||||
|
|
@ -74,5 +75,7 @@ void ascodec_supressor_on(bool on)
|
|||
/* Release pop prevention */
|
||||
GPIO_CLEAR_BITWISE(GPIOG_OUTPUT_VAL, 0x08);
|
||||
}
|
||||
#else
|
||||
(void)on;
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue