summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c b/firmware/target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c
index 0638e30aeb..92f63aebfe 100644
--- a/firmware/target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c
+++ b/firmware/target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c
@@ -42,9 +42,9 @@ bool _backlight_init(void)
42 imx233_set_pin_function(1, 28, PINCTRL_FUNCTION_GPIO); 42 imx233_set_pin_function(1, 28, PINCTRL_FUNCTION_GPIO);
43 imx233_set_pin_drive_strength(1, 28, PINCTRL_DRIVE_8mA); 43 imx233_set_pin_drive_strength(1, 28, PINCTRL_DRIVE_8mA);
44 imx233_enable_gpio_output(1, 28, true); 44 imx233_enable_gpio_output(1, 28, true);
45 imx233_set_gpio_output(1, 29, true); 45 #ifndef HAVE_BACKLIGHT_BRIGHTNESS
46 udelay(600); 46 _backlight_set_brightness(DEFAULT_BRIGHTNESS_SETTING);
47 _backlight_set_brightness(100); 47 #endif
48 return true; 48 return true;
49} 49}
50 50