From: Axel Lin Date: Tue, 10 Jan 2012 23:09:35 +0000 (-0800) Subject: drivers/leds/leds-bd2802.c: use gpio_request_one() X-Git-Tag: v3.3-rc1~113^2~51 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=95dafd475382740a841697a2ead6566175d26390;p=linux.git drivers/leds/leds-bd2802.c: use gpio_request_one() Use gpio_request_one() instead of multiple gpiolib calls. Signed-off-by: Axel Lin Cc: Kim Kyuwon Cc: Richard Purdie Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/leds/leds-bd2802.c b/drivers/leds/leds-bd2802.c index 10e40971ffbb..591cbdf5a046 100644 --- a/drivers/leds/leds-bd2802.c +++ b/drivers/leds/leds-bd2802.c @@ -688,8 +688,7 @@ static int __devinit bd2802_probe(struct i2c_client *client, i2c_set_clientdata(client, led); /* Configure RESET GPIO (L: RESET, H: RESET cancel) */ - gpio_request(pdata->reset_gpio, "RGB_RESETB"); - gpio_direction_output(pdata->reset_gpio, 1); + gpio_request_one(pdata->reset_gpio, GPIOF_OUT_INIT_HIGH, "RGB_RESETB"); /* Tacss = min 0.1ms */ udelay(100);