Skip to content

Commit

Permalink
V4L/DVB (6618): drivers/media/dvb: Add missing "space"
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Joe Perches authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent ac9bb7f commit 11645cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/dvb/frontends/ves1820.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static int ves1820_writereg(struct ves1820_state *state, u8 reg, u8 data)
ret = i2c_transfer(state->i2c, &msg, 1);

if (ret != 1)
printk("ves1820: %s(): writereg error (reg == 0x%02x,"
printk("ves1820: %s(): writereg error (reg == 0x%02x, "
"val == 0x%02x, ret == %i)\n", __FUNCTION__, reg, data, ret);

return (ret != 1) ? -EREMOTEIO : 0;
Expand All @@ -84,7 +84,7 @@ static u8 ves1820_readreg(struct ves1820_state *state, u8 reg)
ret = i2c_transfer(state->i2c, msg, 2);

if (ret != 2)
printk("ves1820: %s(): readreg error (reg == 0x%02x,"
printk("ves1820: %s(): readreg error (reg == 0x%02x, "
"ret == %i)\n", __FUNCTION__, reg, ret);

return b1[0];
Expand Down

0 comments on commit 11645cc

Please sign in to comment.