summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/cxd2820r_core.c
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-04-24 09:19:18 -0400
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2018-05-05 10:11:35 -0400
commit8d718e5376c602dfd41b599dcc2a7b1be07c7b6b (patch)
tree2dc0c19aa2e0db2841f78b777a690e1eb16c345b /drivers/media/dvb-frontends/cxd2820r_core.c
parent530d47388496a1d086fd481dbf8fcada6add3be8 (diff)
downloadlinux-stable-8d718e5376c602dfd41b599dcc2a7b1be07c7b6b.tar.gz
linux-stable-8d718e5376c602dfd41b599dcc2a7b1be07c7b6b.tar.bz2
linux-stable-8d718e5376c602dfd41b599dcc2a7b1be07c7b6b.zip
media: frontends: fix ops get_algo()'s return type
The method dvb_frontend_ops::get_frontend_algo() is defined as returning an 'enum dvbfe_algo', but the implementation in this driver returns an 'int'. Fix this by returning 'enum dvbfe_algo' on drivers. [mchehab+samsung@kernel.org: merge similar patches and patch ddbridge-mci.c the same way] Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/dvb-frontends/cxd2820r_core.c')
-rw-r--r--drivers/media/dvb-frontends/cxd2820r_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/cxd2820r_core.c b/drivers/media/dvb-frontends/cxd2820r_core.c
index f6ebbb47b9b2..3e0d8cbd76da 100644
--- a/drivers/media/dvb-frontends/cxd2820r_core.c
+++ b/drivers/media/dvb-frontends/cxd2820r_core.c
@@ -403,7 +403,7 @@ error:
return DVBFE_ALGO_SEARCH_ERROR;
}
-static int cxd2820r_get_frontend_algo(struct dvb_frontend *fe)
+static enum dvbfe_algo cxd2820r_get_frontend_algo(struct dvb_frontend *fe)
{
return DVBFE_ALGO_CUSTOM;
}