From 08585e417b4e545752ff9478d28c4da3e8c09844 Mon Sep 17 00:00:00 2001 From: Mark Arigo Date: Fri, 12 Dec 2008 04:56:25 +0000 Subject: FS#9591 by Anton Veretenenko for the Philips GoGear HDD1620/1630 (with a few changes by me). Fixes boot problem, pixel format, sound, and a few other things. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19395 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/philips/hdd1630/backlight-hdd1630.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'firmware/target/arm/philips/hdd1630/backlight-hdd1630.c') diff --git a/firmware/target/arm/philips/hdd1630/backlight-hdd1630.c b/firmware/target/arm/philips/hdd1630/backlight-hdd1630.c index 0c49e65563..eb2c2731ac 100755 --- a/firmware/target/arm/philips/hdd1630/backlight-hdd1630.c +++ b/firmware/target/arm/philips/hdd1630/backlight-hdd1630.c @@ -34,10 +34,14 @@ void _backlight_set_brightness(int brightness) void _backlight_on(void) { + GPO32_VAL &= ~0x1000000; + GPO32_ENABLE &= ~0x1000000; } void _backlight_off(void) { + GPO32_VAL |= 0x1000000; + GPO32_ENABLE |= 0x1000000; } #ifdef HAVE_BUTTON_LIGHT -- cgit