aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDevin Heitmueller <devin.heitmueller@gmail.com>2008-04-21 06:02:09 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:09:44 -0400
commitb37f2d6a31fc8e80c79a0a214d83b128aa796543 (patch)
tree3b1e8505b510093ec70072bdb911e4b883909a9a /drivers
parent4269a8eed210d143298baf80185317fc1dcb25ca (diff)
V4L/DVB (7653): tuner-xc2028: drop the severity of version reporting
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 'drivers')
-rw-r--r--drivers/media/video/tuner-xc2028.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/video/tuner-xc2028.c b/drivers/media/video/tuner-xc2028.c
index 0e580bcd0e09..a32094e545f7 100644
--- a/drivers/media/video/tuner-xc2028.c
+++ b/drivers/media/video/tuner-xc2028.c
@@ -784,10 +784,10 @@ check_device:
784 goto fail; 784 goto fail;
785 } 785 }
786 786
787 tuner_info("Device is Xceive %d version %d.%d, " 787 tuner_dbg("Device is Xceive %d version %d.%d, "
788 "firmware version %d.%d\n", 788 "firmware version %d.%d\n",
789 hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8, 789 hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8,
790 (version & 0xf0) >> 4, version & 0xf); 790 (version & 0xf0) >> 4, version & 0xf);
791 791
792 /* Check firmware version against what we downloaded. */ 792 /* Check firmware version against what we downloaded. */
793 if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) { 793 if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) {