|
@@ -153,15 +153,12 @@ static void smdkv210_lte480wv_set_power(struct plat_lcd_data *pd,
|
|
|
{
|
|
|
if (power) {
|
|
|
#if !defined(CONFIG_BACKLIGHT_PWM)
|
|
|
- gpio_request(S5PV210_GPD0(3), "GPD0");
|
|
|
- gpio_direction_output(S5PV210_GPD0(3), 1);
|
|
|
+ gpio_request_one(S5PV210_GPD0(3), GPIOF_OUT_INIT_HIGH, "GPD0");
|
|
|
gpio_free(S5PV210_GPD0(3));
|
|
|
#endif
|
|
|
|
|
|
/* fire nRESET on power up */
|
|
|
- gpio_request(S5PV210_GPH0(6), "GPH0");
|
|
|
-
|
|
|
- gpio_direction_output(S5PV210_GPH0(6), 1);
|
|
|
+ gpio_request_one(S5PV210_GPH0(6), GPIOF_OUT_INIT_HIGH, "GPH0");
|
|
|
|
|
|
gpio_set_value(S5PV210_GPH0(6), 0);
|
|
|
mdelay(10);
|
|
@@ -172,8 +169,7 @@ static void smdkv210_lte480wv_set_power(struct plat_lcd_data *pd,
|
|
|
gpio_free(S5PV210_GPH0(6));
|
|
|
} else {
|
|
|
#if !defined(CONFIG_BACKLIGHT_PWM)
|
|
|
- gpio_request(S5PV210_GPD0(3), "GPD0");
|
|
|
- gpio_direction_output(S5PV210_GPD0(3), 0);
|
|
|
+ gpio_request_one(S5PV210_GPD0(3), GPIOF_OUT_INIT_LOW, "GPD0");
|
|
|
gpio_free(S5PV210_GPD0(3));
|
|
|
#endif
|
|
|
}
|