V4L/DVB (9408): tda8261: check status to avoid lock loss

We need to check for tuner LOCK LOSS, especially in the case of simple PLL's

Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
diff --git a/drivers/media/dvb/frontends/tda8261.c b/drivers/media/dvb/frontends/tda8261.c
index a6cd2b3..9cbd511 100644
--- a/drivers/media/dvb/frontends/tda8261.c
+++ b/drivers/media/dvb/frontends/tda8261.c
@@ -73,6 +73,8 @@
 	u8 result = 0;
 	int err = 0;
 
+	*status = 0;
+
 	if ((err = tda8261_read(state, &result)) < 0) {
 		printk("%s: I/O Error\n", __func__);
 		return err;
@@ -184,6 +186,7 @@
 
 	.set_state	= tda8261_set_state,
 	.get_state	= tda8261_get_state,
+	.get_status	= tda8261_get_status,
 	.release	= tda8261_release
 };