V4L/DVB (6441): tuner: clean up ops checking in tuner_status function

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Michael Krufky
2007-10-22 01:44:03 -03:00
committed by Mauro Carvalho Chehab
parent 4e9154b8a7
commit 1b29cedab9

View File

@@ -567,12 +567,13 @@ static void tuner_status(struct dvb_frontend *fe)
if (tuner_status & TUNER_STATUS_STEREO) if (tuner_status & TUNER_STATUS_STEREO)
tuner_info("Stereo: yes\n"); tuner_info("Stereo: yes\n");
} }
if ((ops) && (ops->has_signal)) { if (ops) {
tuner_info("Signal strength: %d\n", ops->has_signal(fe)); if (ops->has_signal)
} tuner_info("Signal strength: %d\n",
if ((ops) && (ops->is_stereo)) { ops->has_signal(fe));
tuner_info("Stereo: %s\n", ops->is_stereo(fe) ? if (ops->is_stereo)
"yes" : "no"); tuner_info("Stereo: %s\n",
ops->is_stereo(fe) ? "yes" : "no");
} }
} }