diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-07 21:01:57 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-30 06:38:17 -0500 |
commit | e5218eedaef39ed5f1ebc84ab9510dd9b99acadf (patch) | |
tree | b0bb513a17cbf1ac614b573c01f177ceab4b9301 /drivers/media/common/tuners | |
parent | 26d5f3a3fe917232cb77e2e3450f7d7f8698259c (diff) |
V4L/DVB (9773): tda827x: fix printk message when in FM mode
Cc: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common/tuners')
-rw-r--r-- | drivers/media/common/tuners/tda827x.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/media/common/tuners/tda827x.c b/drivers/media/common/tuners/tda827x.c index 4a74f65e759a..f221cee4c687 100644 --- a/drivers/media/common/tuners/tda827x.c +++ b/drivers/media/common/tuners/tda827x.c | |||
@@ -80,10 +80,11 @@ static void tda827x_set_std(struct dvb_frontend *fe, | |||
80 | mode = "xx"; | 80 | mode = "xx"; |
81 | } | 81 | } |
82 | 82 | ||
83 | if (params->mode == V4L2_TUNER_RADIO) | 83 | if (params->mode == V4L2_TUNER_RADIO) { |
84 | priv->sgIF = 88; /* if frequency is 5.5 MHz */ | 84 | priv->sgIF = 88; /* if frequency is 5.5 MHz */ |
85 | 85 | dprintk("setting tda827x to radio FM\n"); | |
86 | dprintk("setting tda827x to system %s\n", mode); | 86 | } else |
87 | dprintk("setting tda827x to system %s\n", mode); | ||
87 | } | 88 | } |
88 | 89 | ||
89 | 90 | ||