summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/tda9887.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux/drivers/media/video/tda9887.c')
-rw-r--r--linux/drivers/media/video/tda9887.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/linux/drivers/media/video/tda9887.c b/linux/drivers/media/video/tda9887.c
index 9c23709e8..90d210c2c 100644
--- a/linux/drivers/media/video/tda9887.c
+++ b/linux/drivers/media/video/tda9887.c
@@ -228,6 +228,20 @@ static struct tvnorm radio = {
cRadioIF_38_90 ),
};
+#if 0 /* do we really need this ? */
+static struct tvnorm ih3_radio = {
+ .name = "radio",
+ .b = ( cFmRadio |
+ cQSS |
+ cAutoMuteFmActive),
+ .c = 0x10, /* ??? */
+ .e = (cAudioIF_6_5 |
+ cVideoIF_38_90 |
+ cGating_36 |
+ cTunerGainLow),
+};
+#endif
+
/* ---------------------------------------------------------------------- */
static void dump_read_message(unsigned char *buf)
@@ -253,6 +267,7 @@ static void dump_read_message(unsigned char *buf)
printk(PREFIX "read: 0x%2x\n", buf[0]);
printk(" after power on : %s\n", (buf[0] & 0x01) ? "yes" : "no");
printk(" afc : %s\n", afc[(buf[0] >> 1) & 0x0f]);
+ printk(" fmif level : %s\n", (buf[0] & 0x20) ? "high" : "low");
printk(" afc window : %s\n", (buf[0] & 0x40) ? "in" : "out");
printk(" vfi level : %s\n", (buf[0] & 0x80) ? "high" : "low");
}