mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
media: lgdt3306a: fix lgdt3306a_search()'s return type
The method dvb_frontend_ops::search() is defined as returning an 'enum dvbfe_search', but the implementation in this driver returns an 'int'. Fix this by returning 'enum dvbfe_search' in this driver too. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com> Acked-by: Brad Love <brad@nextdimension.cc> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
8d718e5376
commit
f172fe9fd8
1 changed files with 1 additions and 1 deletions
|
@ -1784,7 +1784,7 @@ static int lgdt3306a_get_tune_settings(struct dvb_frontend *fe,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int lgdt3306a_search(struct dvb_frontend *fe)
|
||||
static enum dvbfe_search lgdt3306a_search(struct dvb_frontend *fe)
|
||||
{
|
||||
enum fe_status status = 0;
|
||||
int ret;
|
||||
|
|
Loading…
Reference in a new issue