]> git.karo-electronics.de Git - linux-beck.git/commit
st-hva: fix some error handling in hva_hw_probe()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 14 Oct 2016 07:32:24 +0000 (04:32 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Jan 2017 07:24:45 +0000 (08:24 +0100)
commitdfe8e5730fa1a91129c65dacf85783fa796d7e0a
treeb900ed3f8d5bee1c02fa282e22beba373310b138
parentb9dc16170dbf5385a273019175c0576d3224cd36
st-hva: fix some error handling in hva_hw_probe()

commit 6b2bed891253c08e7f4c17dbd46b71fc87f22eef upstream.

The devm_ioremap_resource() returns error pointers, never NULL.  The
platform_get_resource() returns NULL on error, never error pointers.
The error code needs to be set, as well.  The current code returns
PTR_ERR(NULL) which is success.

Fixes: 57b2c0628b60 ("[media] st-hva: multi-format video encoder V4L2 driver")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Jean-Christophe Trotin <jean-christophe.trotin@st.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/media/platform/sti/hva/hva-hw.c