Index: firmware/target/arm/philips/backlight-hdd.c
===================================================================
--- firmware/target/arm/philips/backlight-hdd.c	(revision 27326)
+++ firmware/target/arm/philips/backlight-hdd.c	(working copy)
@@ -36,14 +36,22 @@
 
 void _backlight_on(void)
 {
+#if defined(PHILIPS_HDD6330)
+    GPO32_VAL    |= 0x0000400;
+#else
     GPO32_VAL    &= ~0x1000000;
     GPO32_ENABLE &= ~0x1000000;
+#endif
 }
 
 void _backlight_off(void)
 {
+#if defined(PHILIPS_HDD6330)
+    GPO32_VAL    &= ~0x0000400;
+#else
     GPO32_VAL    |= 0x1000000;
     GPO32_ENABLE |= 0x1000000;
+#endif
 }
 
 #ifdef HAVE_BUTTON_LIGHT
