summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorBarry Wardell <rockbox@barrywardell.net>2007-11-05 14:26:47 +0000
committerBarry Wardell <rockbox@barrywardell.net>2007-11-05 14:26:47 +0000
commit91bacf363ae4251a87edda4cb1c414153e350d2e (patch)
tree25f61537279a458f64bda24b1b4b2dd6888ff8cd /firmware/drivers
parent91ccc01bcf78e6a06dce5f900242397813c1e50e (diff)
downloadrockbox-91bacf363ae4251a87edda4cb1c414153e350d2e.zip
rockbox-91bacf363ae4251a87edda4cb1c414153e350d2e.tar.gz
rockbox-91bacf363ae4251a87edda4cb1c414153e350d2e.tar.bz2
rockbox-91bacf363ae4251a87edda4cb1c414153e350d2e.tar.xz
Get rid of a couple of inl/outl since we have defines. Also use some other defines in place of magic values.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15470 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/audio/as3514.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/drivers/audio/as3514.c b/firmware/drivers/audio/as3514.c
index bc6705c..5d7c700 100644
--- a/firmware/drivers/audio/as3514.c
+++ b/firmware/drivers/audio/as3514.c
@@ -141,15 +141,15 @@ void audiohw_init(void)
DEV_INIT2 &= ~0x300;
/*mini2?*/
- outl(inl(0x70000010) & ~0x3000000, 0x70000010);
+ DEV_INIT1 &=~0x3000000;
/*mini2?*/
/* device reset */
- DEV_RS |= 0x800;
- DEV_RS &=~0x800;
+ DEV_RS |= DEV_I2S;
+ DEV_RS &=~DEV_I2S;
/* device enable */
- DEV_EN |= 0x807;
+ DEV_EN |= (DEV_I2S | 0x7);
/* enable external dev clock clocks */
DEV_EN |= 0x2;