drm/tegra: dpaux: Fix error handling
authorChristophe Jaillet <christophe.jaillet@wanadoo.fr>
Fri, 28 Oct 2016 09:09:45 +0000 (11:09 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jan 2017 19:17:58 +0000 (20:17 +0100)
commita63bb198dc14b43558618bac461936661af74450
treeeee48c7ad679505d3303b26820675f9faf5860c0
parent6b94626c9edfb434a779d59d8409c982d206b25d
drm/tegra: dpaux: Fix error handling

commit 9376cad2073d2c122864754ea5f80025c8507b0b upstream.

The devm_pinctrl_register() function returns an error pointer or a valid
handle. So checking for NULL here is pointless and can never trigger.

Check the returned value with IS_ERR instead and propagate this value as
done in the other functions which call devm_pinctrl_register().

Fixes: 0751bb5c44fe ("drm/tegra: dpaux: Add pinctrl support")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/tegra/dpaux.c