aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/common
diff options
context:
space:
mode:
authorDevin Heitmueller <dheitmueller@kernellabs.com>2009-04-02 21:45:17 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 17:21:06 -0400
commit34a0db9202414c42763a437f9937cd8692263170 (patch)
tree466d0b1cfa7da0527b3b239a96a4f70637034cf5 /drivers/media/common
parent81c4dfe7764abc0c859cc0ab2d7cf54dbb36487a (diff)
V4L/DVB (11797): xc5000: cleanup firmware loading messages
Make it a little more obvious in the dmesg output what is going on during firmware upload. This is more important for boards like the HVR-950q that take nearly seven seconds to do the upload. Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common')
-rw-r--r--drivers/media/common/tuners/xc5000.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/common/tuners/xc5000.c b/drivers/media/common/tuners/xc5000.c
index 172be68b3b55..efc43123952d 100644
--- a/drivers/media/common/tuners/xc5000.c
+++ b/drivers/media/common/tuners/xc5000.c
@@ -555,7 +555,7 @@ static int xc5000_fwupload(struct dvb_frontend *fe)
555 ret = XC_RESULT_RESET_FAILURE; 555 ret = XC_RESULT_RESET_FAILURE;
556 goto out; 556 goto out;
557 } else { 557 } else {
558 printk(KERN_INFO "xc5000: firmware read %Zu bytes.\n", 558 printk(KERN_DEBUG "xc5000: firmware read %Zu bytes.\n",
559 fw->size); 559 fw->size);
560 ret = XC_RESULT_SUCCESS; 560 ret = XC_RESULT_SUCCESS;
561 } 561 }
@@ -564,8 +564,9 @@ static int xc5000_fwupload(struct dvb_frontend *fe)
564 printk(KERN_ERR "xc5000: firmware incorrect size\n"); 564 printk(KERN_ERR "xc5000: firmware incorrect size\n");
565 ret = XC_RESULT_RESET_FAILURE; 565 ret = XC_RESULT_RESET_FAILURE;
566 } else { 566 } else {
567 printk(KERN_INFO "xc5000: firmware upload\n"); 567 printk(KERN_INFO "xc5000: firmware uploading...\n");
568 ret = xc_load_i2c_sequence(fe, fw->data); 568 ret = xc_load_i2c_sequence(fe, fw->data);
569 printk(KERN_INFO "xc5000: firmware upload complete...\n");
569 } 570 }
570 571
571out: 572out: