From: Luc Van Oostenryck Date: Tue, 24 Apr 2018 13:19:04 +0000 (-0400) Subject: media: lgdt3306a: fix lgdt3306a_search()'s return type X-Git-Tag: Ubuntu-5.13.0-19.19~10860^2~210 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f172fe9fd86bf25cf0776ef7733d20576843a0d4;p=mirror_ubuntu-jammy-kernel.git 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 Acked-by: Brad Love Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/dvb-frontends/lgdt3306a.c b/drivers/media/dvb-frontends/lgdt3306a.c index 7eb4e1469d20..32de824476db 100644 --- a/drivers/media/dvb-frontends/lgdt3306a.c +++ b/drivers/media/dvb-frontends/lgdt3306a.c @@ -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;