summaryrefslogtreecommitdiff
path: root/firmware/target
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target')
-rwxr-xr-xfirmware/target/arm/philips/hdd1630/button-hdd1630.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/philips/hdd1630/button-hdd1630.c b/firmware/target/arm/philips/hdd1630/button-hdd1630.c
index 8976e7325c..c0ac8d7c10 100755
--- a/firmware/target/arm/philips/hdd1630/button-hdd1630.c
+++ b/firmware/target/arm/philips/hdd1630/button-hdd1630.c
@@ -40,7 +40,7 @@ static int int_btn = BUTTON_NONE;
40void button_click(void) 40void button_click(void)
41{ 41{
42 GPO32_ENABLE |= 0x2000; 42 GPO32_ENABLE |= 0x2000;
43 GPIOD_OUTPUT_VAL |= 0x8; 43 GPO32_VAL |= 0x2000;
44 udelay(1000); 44 udelay(1000);
45 GPO32_VAL &= ~0x2000; 45 GPO32_VAL &= ~0x2000;
46} 46}