Re: [PATCH 1/2] [media] tc358743: set direction of reset gpio using devm_gpiod_get

2015-08-19 Thread Philipp Zabel
Am Dienstag, den 18.08.2015, 10:31 +0200 schrieb Uwe Kleine-König: > Commit 256148246852 ("[media] tc358743: support probe from device tree") > failed to explicitly set the direction of the reset gpio. Use the > optional flag of devm_gpiod_get to make up leeway. > > This is also necessary because

Re: [PATCH 1/2] [media] tc358743: set direction of reset gpio using devm_gpiod_get

2015-08-18 Thread Linus Walleij
On Tue, Aug 18, 2015 at 10:31 AM, Uwe Kleine-König wrote: > Commit 256148246852 ("[media] tc358743: support probe from device tree") > failed to explicitly set the direction of the reset gpio. Use the > optional flag of devm_gpiod_get to make up leeway. > > This is also necessary because the flag

[PATCH 1/2] [media] tc358743: set direction of reset gpio using devm_gpiod_get

2015-08-18 Thread Uwe Kleine-König
Commit 256148246852 ("[media] tc358743: support probe from device tree") failed to explicitly set the direction of the reset gpio. Use the optional flag of devm_gpiod_get to make up leeway. This is also necessary because the flag parameter will become mandatory soon. Signed-off-by: Uwe Kleine-Kön