diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2014-11-05 05:03:00 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-11-05 09:09:26 -0200 |
commit | 3f7991357f6b33c82bf2135725847970ffd2ed83 (patch) | |
tree | d0f349200099f0b53677e9acf17fe76be203efaf /drivers/media/platform/ti-vpe/sc.c | |
parent | d674a6547c67907ad754a4b5223e2044ea8e0daa (diff) | |
download | blackbird-obmc-linux-3f7991357f6b33c82bf2135725847970ffd2ed83.tar.gz blackbird-obmc-linux-3f7991357f6b33c82bf2135725847970ffd2ed83.zip |
[media] ti-vpe: fix sparse warnings
sc.c:303:26: warning: incorrect type in return expression (different address spaces)
csc.c:188:27: warning: incorrect type in return expression (different address spaces)
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/platform/ti-vpe/sc.c')
-rw-r--r-- | drivers/media/platform/ti-vpe/sc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/ti-vpe/sc.c b/drivers/media/platform/ti-vpe/sc.c index 1088381bd349..f82d1c7f667f 100644 --- a/drivers/media/platform/ti-vpe/sc.c +++ b/drivers/media/platform/ti-vpe/sc.c @@ -300,7 +300,7 @@ struct sc_data *sc_create(struct platform_device *pdev) sc->base = devm_ioremap_resource(&pdev->dev, sc->res); if (IS_ERR(sc->base)) { dev_err(&pdev->dev, "failed to ioremap\n"); - return sc->base; + return ERR_CAST(sc->base); } return sc; |