diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-21 04:02:09 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-21 04:02:09 -0300 |
commit | 8f9cfbc530140f29bd459a164268b1b80e123321 (patch) | |
tree | 881b950b5e3717c6f924beee3ba26d7ec424dbb2 /linux/drivers | |
parent | 443b392f97431e2f813ac45eb1f77e02c06497f9 (diff) | |
download | mediapointer-dvb-s2-8f9cfbc530140f29bd459a164268b1b80e123321.tar.gz mediapointer-dvb-s2-8f9cfbc530140f29bd459a164268b1b80e123321.tar.bz2 |
From: Devin Heitmueller <devin.heitmueller@gmail.com>
tuner-xc2028.c
- Drop the severity level of the xc3028 version reporting, since it's
only of interest to developers and user's don't need to have it show up
in their dmesg output every time they change the channel.
Signed-off-by: Devin Heitmueller <devin.heitmueller@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/tuner-xc2028.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/video/tuner-xc2028.c b/linux/drivers/media/video/tuner-xc2028.c index 8d63aeaa8..ce066dc97 100644 --- a/linux/drivers/media/video/tuner-xc2028.c +++ b/linux/drivers/media/video/tuner-xc2028.c @@ -799,10 +799,10 @@ check_device: goto fail; } - tuner_info("Device is Xceive %d version %d.%d, " - "firmware version %d.%d\n", - hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8, - (version & 0xf0) >> 4, version & 0xf); + tuner_dbg("Device is Xceive %d version %d.%d, " + "firmware version %d.%d\n", + hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8, + (version & 0xf0) >> 4, version & 0xf); /* Check firmware version against what we downloaded. */ if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) { |