Fix c200 warning.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19215 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2008-11-25 16:31:24 +00:00
parent 3511d94031
commit 8d84a81a1e

View file

@ -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
}