[media] drxk: Fix read debug message

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Mauro Carvalho Chehab 2011-07-21 22:30:27 -03:00
parent e716adacef
commit f07a0bc111

View file

@ -355,13 +355,7 @@ static int i2c_read(struct i2c_adapter *adap,
{.addr = adr, .flags = I2C_M_RD,
.buf = answ, .len = alen}
};
dprintk(3, ":");
if (debug > 2) {
int i;
for (i = 0; i < len; i++)
printk(KERN_CONT " %02x", msg[i]);
printk(KERN_CONT "\n");
}
status = i2c_transfer(adap, msgs, 2);
if (status != 2) {
if (debug > 2)
@ -374,9 +368,12 @@ static int i2c_read(struct i2c_adapter *adap,
}
if (debug > 2) {
int i;
printk(KERN_CONT ": Read ");
dprintk(2, ": read from ");
for (i = 0; i < len; i++)
printk(KERN_CONT " %02x", msg[i]);
printk(KERN_CONT "Value = ");
for (i = 0; i < alen; i++)
printk(KERN_CONT " %02x", answ[i]);
printk(KERN_CONT "\n");
}
return 0;
@ -1075,7 +1072,7 @@ static int GetDeviceCapabilities(struct drxk_state *state)
state->m_hasIRQN = false;
break;
default:
printk(KERN_ERR "drxk: DeviceID not supported = %02x\n",
printk(KERN_ERR "drxk: DeviceID 0x%02x not supported\n",
((sioTopJtagidLo >> 12) & 0xFF));
status = -EINVAL;
goto error2;