]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
V4L/DVB (7653): tuner-xc2028: drop the severity of version reporting
authorDevin Heitmueller <devin.heitmueller@gmail.com>
Mon, 21 Apr 2008 10:02:09 +0000 (07:02 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Thu, 24 Apr 2008 17:09:44 +0000 (14:09 -0300)
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>
drivers/media/video/tuner-xc2028.c

index 0e580bcd0e09d27864f9f8873a5aa8a580cd30a8..a32094e545f77422d83dedd22def075434846e41 100644 (file)
@@ -784,10 +784,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))) {