summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/philips/hdd6330/backlight-hdd6330.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/philips/hdd6330/backlight-hdd6330.c b/firmware/target/arm/philips/hdd6330/backlight-hdd6330.c
index ec77e9c828..68d2ad8149 100644
--- a/firmware/target/arm/philips/hdd6330/backlight-hdd6330.c
+++ b/firmware/target/arm/philips/hdd6330/backlight-hdd6330.c
@@ -47,7 +47,7 @@ void _backlight_off(void)
47} 47}
48 48
49#ifdef HAVE_BUTTON_LIGHT 49#ifdef HAVE_BUTTON_LIGHT
50#define BUTTONLIGHT_MASK 0x7f 50#define BUTTONLIGHT_MASK 0x64
51static unsigned short buttonight_brightness = DEFAULT_BRIGHTNESS_SETTING - 1; 51static unsigned short buttonight_brightness = DEFAULT_BRIGHTNESS_SETTING - 1;
52static unsigned short buttonlight_status = 0; 52static unsigned short buttonlight_status = 0;
53 53
@@ -62,7 +62,7 @@ void _buttonlight_on(void)
62 /* skip 2 leds because their light does not pass */ 62 /* skip 2 leds because their light does not pass */
63 /* through the panel anyway - on GPOs, module 0 */ 63 /* through the panel anyway - on GPOs, module 0 */
64 touchpad_set_parameter(0x00,0x22,0x15); 64 touchpad_set_parameter(0x00,0x22,0x15);
65 /* left, right and the scrollstrip */ 65 /* left, right and the scrollstrip (1 led from 5) */
66 touchpad_set_buttonlights(BUTTONLIGHT_MASK, buttonight_brightness); 66 touchpad_set_buttonlights(BUTTONLIGHT_MASK, buttonight_brightness);
67 buttonlight_status = 1; 67 buttonlight_status = 1;
68 } 68 }