summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/iriver/h10/backlight-h10.c16
-rw-r--r--firmware/target/arm/iriver/h10/backlight-target.h3
2 files changed, 2 insertions, 17 deletions
diff --git a/firmware/target/arm/iriver/h10/backlight-h10.c b/firmware/target/arm/iriver/h10/backlight-h10.c
index 51218e2..21595d1 100644
--- a/firmware/target/arm/iriver/h10/backlight-h10.c
+++ b/firmware/target/arm/iriver/h10/backlight-h10.c
@@ -16,10 +16,6 @@
* KIND, either express or implied.
*
****************************************************************************/
-
-/* The H10 display (and hence backlight) possibly identical to that of the X5,
- so that code was used here but left #if 0'ed out for the moment */
-
#include "config.h"
#include "cpu.h"
#include "system.h"
@@ -27,18 +23,10 @@
void __backlight_on(void)
{
-#if 0
- int level = set_irq_level(HIGHEST_IRQ_LEVEL);
- pcf50606_write(0x38, 0xb0); /* Backlight ON, GPO1INV=1, GPO1ACT=011 */
- set_irq_level(level);
-#endif
+ GPIOL_OUTPUT_VAL |= 0x20;
}
void __backlight_off(void)
{
-#if 0
- int level = set_irq_level(HIGHEST_IRQ_LEVEL);
- pcf50606_write(0x38, 0x80); /* Backlight OFF, GPO1INV=1, GPO1ACT=000 */
- set_irq_level(level);
-#endif
+ GPIOL_OUTPUT_VAL &=~ 0x20;
}
diff --git a/firmware/target/arm/iriver/h10/backlight-target.h b/firmware/target/arm/iriver/h10/backlight-target.h
index b5fe2f7..d35dccd 100644
--- a/firmware/target/arm/iriver/h10/backlight-target.h
+++ b/firmware/target/arm/iriver/h10/backlight-target.h
@@ -16,9 +16,6 @@
* KIND, either express or implied.
*
****************************************************************************/
-
-/* Taken from the x5's implementation */
-
#ifndef BACKLIGHT_TARGET_H
#define BACKLIGHT_TARGET_H