summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/backlight.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/backlight.c b/firmware/backlight.c
index 9767bbab3b..2b0c061786 100644
--- a/firmware/backlight.c
+++ b/firmware/backlight.c
@@ -52,7 +52,7 @@ static unsigned int backlight_timeout = 5;
52static void __backlight_off(void) 52static void __backlight_off(void)
53{ 53{
54#ifdef IRIVER_H100 54#ifdef IRIVER_H100
55 GPIO1_OUT &= ~0x00020000; 55 GPIO1_OUT |= 0x00020000;
56#else 56#else
57#ifdef HAVE_RTC 57#ifdef HAVE_RTC
58 /* Disable square wave */ 58 /* Disable square wave */
@@ -66,7 +66,7 @@ static void __backlight_off(void)
66static void __backlight_on(void) 66static void __backlight_on(void)
67{ 67{
68#ifdef IRIVER_H100 68#ifdef IRIVER_H100
69 GPIO1_OUT |= 0x00020000; 69 GPIO1_OUT &= ~0x00020000;
70#else 70#else
71#ifdef HAVE_RTC 71#ifdef HAVE_RTC
72 /* Enable square wave */ 72 /* Enable square wave */