diff options
author | Devin Heitmueller <dheitmueller@kernellabs.com> | 2009-04-02 21:45:17 -0400 |
---|---|---|
committer | Devin Heitmueller <dheitmueller@kernellabs.com> | 2009-04-02 21:45:17 -0400 |
commit | 72c6b08f362a4159baccf0956151cf54f0f25e2e (patch) | |
tree | 680d4849003446949e4c566433fba269b3c3b056 /linux/drivers/media/common | |
parent | 327592abb68b0a7f1598ea2e5ffbc770cf1411f5 (diff) | |
download | mediapointer-dvb-s2-72c6b08f362a4159baccf0956151cf54f0f25e2e.tar.gz mediapointer-dvb-s2-72c6b08f362a4159baccf0956151cf54f0f25e2e.tar.bz2 |
xc5000: cleanup firmware loading messages
From: Devin Heitmueller <dheitmueller@kernellabs.com>
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.
Priority: normal
Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Diffstat (limited to 'linux/drivers/media/common')
-rw-r--r-- | linux/drivers/media/common/tuners/xc5000.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linux/drivers/media/common/tuners/xc5000.c b/linux/drivers/media/common/tuners/xc5000.c index d90bcbe78..4045b2d50 100644 --- a/linux/drivers/media/common/tuners/xc5000.c +++ b/linux/drivers/media/common/tuners/xc5000.c @@ -563,7 +563,7 @@ static int xc5000_fwupload(struct dvb_frontend *fe) ret = XC_RESULT_RESET_FAILURE; goto out; } else { - printk(KERN_INFO "xc5000: firmware read %Zu bytes.\n", + printk(KERN_DEBUG "xc5000: firmware read %Zu bytes.\n", fw->size); ret = XC_RESULT_SUCCESS; } @@ -572,8 +572,9 @@ static int xc5000_fwupload(struct dvb_frontend *fe) printk(KERN_ERR "xc5000: firmware incorrect size\n"); ret = XC_RESULT_RESET_FAILURE; } else { - printk(KERN_INFO "xc5000: firmware upload\n"); + printk(KERN_INFO "xc5000: firmware uploading...\n"); ret = xc_load_i2c_sequence(fe, fw->data); + printk(KERN_INFO "xc5000: firmware upload complete...\n"); } out: |