1
0
Fork 0
forked from len0rd/rockbox

Get rid of some more inl/outl. 0x70000084 seems to be GPO32_ENABLE.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15477 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Barry Wardell 2007-11-05 17:19:00 +00:00
parent 4ef3e821cb
commit 03dd35db0e
8 changed files with 9 additions and 8 deletions

View file

@ -86,7 +86,7 @@ bool tuner_power(bool status)
{
/* init mystery amplification device */
#if defined(SANSA_E200)
outl(inl(0x70000084) | 0x1, 0x70000084);
GPO32_ENABLE |= 0x1;
#else /* SANSA_C200 */
DEV_INIT2 &= ~0x800;
#endif
@ -121,7 +121,7 @@ bool tuner_power(bool status)
/* turn off mystery amplification device */
#if defined (SANSA_E200)
outl(inl(0x70000084) & ~0x1, 0x70000084);
GPO32_ENABLE &= ~0x1;
#else
DEV_INIT2 |= 0x800;
#endif