Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 346383
b: refs/heads/master
c: 05a5d4d
h: refs/heads/master
i:
  346381: adbcfe8
  346379: 5c8fd27
  346375: ee53a04
  346367: 610e5ca
v: v3
  • Loading branch information
Jingoo Han authored and Linus Torvalds committed Dec 18, 2012
1 parent 039dbe1 commit 75a14e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5a5a07436669b3072fbe9f06d27667ec6db62bf5
refs/heads/master: 05a5d4d2640dfe934ec78ba577dd21baccb11aa6
6 changes: 2 additions & 4 deletions trunk/drivers/video/backlight/tosa_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,12 @@ static int tosa_bl_probe(struct i2c_client *client,

data->comadj = sharpsl_param.comadj == -1 ? COMADJ_DEFAULT : sharpsl_param.comadj;

ret = devm_gpio_request(&client->dev, TOSA_GPIO_BL_C20MA, "backlight");
ret = devm_gpio_request_one(&client->dev, TOSA_GPIO_BL_C20MA,
GPIOF_OUT_INIT_LOW, "backlight");
if (ret) {
dev_dbg(&data->bl->dev, "Unable to request gpio!\n");
return ret;
}
ret = gpio_direction_output(TOSA_GPIO_BL_C20MA, 0);
if (ret)
return ret;

i2c_set_clientdata(client, data);
data->i2c = client;
Expand Down
8 changes: 2 additions & 6 deletions trunk/drivers/video/backlight/tosa_lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,17 +195,13 @@ static int tosa_lcd_probe(struct spi_device *spi)
data->spi = spi;
dev_set_drvdata(&spi->dev, data);

ret = devm_gpio_request(&spi->dev, TOSA_GPIO_TG_ON, "tg #pwr");
ret = devm_gpio_request_one(&spi->dev, TOSA_GPIO_TG_ON,
GPIOF_OUT_INIT_LOW, "tg #pwr");
if (ret < 0)
goto err_gpio_tg;

mdelay(60);

ret = gpio_direction_output(TOSA_GPIO_TG_ON, 0);
if (ret < 0)
goto err_gpio_tg;

mdelay(60);
tosa_lcd_tg_init(data);

tosa_lcd_tg_on(data);
Expand Down

0 comments on commit 75a14e0

Please sign in to comment.