aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorHans Petter Selasky <hselasky@c2i.net>2012-03-27 12:53:19 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-04-09 09:42:11 -0300
commitc065f5b4ee4487bbd411049be6eea1b59a90db96 (patch)
tree09629a416bceda1bcd87d861da8b0cfda99fb943 /drivers/media
parent[media] it913x: fix firmware loading errors (diff)
downloadlinux-dev-c065f5b4ee4487bbd411049be6eea1b59a90db96.tar.xz
linux-dev-c065f5b4ee4487bbd411049be6eea1b59a90db96.zip
[media] dvb_frontend: fix compiler warning
has_get_frontend() should return a boolean, not a pointer. Signed-off-by: Hans Petter Selasky <hselasky@c2i.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/dvb/dvb-core/dvb_frontend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c
index e721975476b0..39696c6a4ed7 100644
--- a/drivers/media/dvb/dvb-core/dvb_frontend.c
+++ b/drivers/media/dvb/dvb-core/dvb_frontend.c
@@ -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;
}
/*