Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c065f5b4 authored by Hans Petter Selasky's avatar Hans Petter Selasky Committed by Mauro Carvalho Chehab
Browse files

[media] dvb_frontend: fix compiler warning



has_get_frontend() should return a boolean, not a pointer.

Signed-off-by: default avatarHans Petter Selasky <hselasky@c2i.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 4da28766
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ static int dtv_property_legacy_params_sync(struct dvb_frontend *fe,

static bool has_get_frontend(struct dvb_frontend *fe)
{
	return fe->ops.get_frontend;
	return fe->ops.get_frontend != NULL;
}

/*