summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-02-07 02:45:32 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-02-07 02:45:32 +0000
commit96038fcd92676ec33cb81414612da98e6649af6a (patch)
tree45e210d8caa29c5642556c0360b1bd35c0734204
parent225543eb7e9b0a3806dc622433adcfdeff942ad4 (diff)
downloadrockbox-96038fcd92676ec33cb81414612da98e6649af6a.zip
rockbox-96038fcd92676ec33cb81414612da98e6649af6a.tar.gz
rockbox-96038fcd92676ec33cb81414612da98e6649af6a.tar.bz2
rockbox-96038fcd92676ec33cb81414612da98e6649af6a.tar.xz
Silly me, those inits were not redundant at all
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5829 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/drivers/power.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/drivers/power.c b/firmware/drivers/power.c
index b8892b9..1c1ce46 100644
--- a/firmware/drivers/power.c
+++ b/firmware/drivers/power.c
@@ -64,6 +64,10 @@ int radio_get_status(void)
void power_init(void)
{
#ifdef IRIVER_H100
+ GPIO1_OUT |= 0x00080000;
+ GPIO1_ENABLE |= 0x00080000;
+ GPIO1_FUNCTION |= 0x00080000;
+
GPIO_ENABLE |= 0x80000000;
GPIO_FUNCTION |= 0x80000000;
#else