On Mon, Sep 16, 2019 at 03:59:04PM +0200, Thierry Reding wrote:
On Sun, Sep 15, 2019 at 12:13:23AM -0700, Dmitry Torokhov wrote:
We do not really need to use API that fetches GPIO data from an arbitrary device tree node, as we are dealing with device tree node assigned to the device structure. We can easily switch to devm_gpiod_get_optional() plus gpiod_set_consumer_name() and clean up the code.
Note this is part of efforts to get rid of [devm_]gpiod_get_from_of_node in drivers so that gpiolib can be cleaned up.
Signed-off-by: Dmitry Torokhov dmitry.torokhov@gmail.com
drivers/gpu/drm/tegra/output.c | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-)
We can't do that. There's a special case in rgb.c that sets output->of_node to something different than output->dev, so we actually need to pass the struct device_node * separately.
Ugh, brainfart on my part. I totally read it is output->dev.of_node, similar to another driver I was looking at...
Please discard, there will be another patch changing devm_gpiod_get_from_of_node() to devm_fwnode_gpiod_get() once Linus merges this new GPIO method.
Thanks.