aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/bt832.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@brturbo.com.br>2006-01-11 19:41:49 -0200
committerMauro Carvalho Chehab <mchehab@brturbo.com.br>2006-01-11 19:41:49 -0200
commitf167cb4e6ee07914b66eb85fc0bf006a409b6838 (patch)
tree11b888db404a404a9a918c841d06d65c21bc4c19 /drivers/media/video/bt832.c
parentb2a17e47ceb82d23dbf5c5fb24b5377e21486dce (diff)
downloadkernel_samsung_smdk4412-f167cb4e6ee07914b66eb85fc0bf006a409b6838.zip
kernel_samsung_smdk4412-f167cb4e6ee07914b66eb85fc0bf006a409b6838.tar.gz
kernel_samsung_smdk4412-f167cb4e6ee07914b66eb85fc0bf006a409b6838.tar.bz2
V4L/DVB (3345): Fixes some bad global variables
- Debug global var is already used inside kernel. - v4l_dbg now expects the debug var - global vars inside msp34xx renamed to msp_* Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/bt832.c')
-rw-r--r--drivers/media/video/bt832.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/bt832.c b/drivers/media/video/bt832.c
index 361a9b6..07c78f1 100644
--- a/drivers/media/video/bt832.c
+++ b/drivers/media/video/bt832.c
@@ -75,13 +75,13 @@ int bt832_hexdump(struct i2c_client *i2c_client_s, unsigned char *buf)
if(debug>1) {
int i;
- v4l_dbg(2,i2c_client_s,"hexdump:");
+ v4l_dbg(2, debug,i2c_client_s,"hexdump:");
for(i=1;i<65;i++) {
if(i!=1) {
if(((i-1)%8)==0) printk(" ");
if(((i-1)%16)==0) {
printk("\n");
- v4l_dbg(2,i2c_client_s,"hexdump:");
+ v4l_dbg(2, debug,i2c_client_s,"hexdump:");
}
}
printk(" %02x",buf[i]);