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.tar.gz
rockbox-96038fcd92676ec33cb81414612da98e6649af6a.zip
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 b8892b9238..1c1ce4629f 100644
--- a/firmware/drivers/power.c
+++ b/firmware/drivers/power.c
@@ -64,6 +64,10 @@ int radio_get_status(void)
64void power_init(void) 64void power_init(void)
65{ 65{
66#ifdef IRIVER_H100 66#ifdef IRIVER_H100
67 GPIO1_OUT |= 0x00080000;
68 GPIO1_ENABLE |= 0x00080000;
69 GPIO1_FUNCTION |= 0x00080000;
70
67 GPIO_ENABLE |= 0x80000000; 71 GPIO_ENABLE |= 0x80000000;
68 GPIO_FUNCTION |= 0x80000000; 72 GPIO_FUNCTION |= 0x80000000;
69#else 73#else