summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod/backlight-nano_video.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/ipod/backlight-nano_video.c')
-rw-r--r--firmware/target/arm/ipod/backlight-nano_video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/ipod/backlight-nano_video.c b/firmware/target/arm/ipod/backlight-nano_video.c
index 5559709333..a5ef334d61 100644
--- a/firmware/target/arm/ipod/backlight-nano_video.c
+++ b/firmware/target/arm/ipod/backlight-nano_video.c
@@ -37,7 +37,7 @@ inline void __backlight_on(void)
37 outl(((0x100 | 1) << 3), 0x6000d824); 37 outl(((0x100 | 1) << 3), 0x6000d824);
38 38
39 /* set port L07 on */ 39 /* set port L07 on */
40 outl(((0x100 | 1) << 7), 0x6000d12c); 40 GPIOL_OUTPUT_VAL = ((0x100 | 1) << 7);
41} 41}
42 42
43inline void __backlight_off(void) 43inline void __backlight_off(void)
@@ -46,5 +46,5 @@ inline void __backlight_off(void)
46 outl(((0x100 | 0) << 3), 0x6000d824); 46 outl(((0x100 | 0) << 3), 0x6000d824);
47 47
48 /* set port L07 off */ 48 /* set port L07 off */
49 outl(((0x100 | 0) << 7), 0x6000d12c); 49 GPIOL_OUTPUT_VAL = ((0x100 | 0) << 7);
50} 50}