Commit f07a0bc1 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] drxk: Fix read debug message

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent e716adac
...@@ -355,13 +355,7 @@ static int i2c_read(struct i2c_adapter *adap, ...@@ -355,13 +355,7 @@ static int i2c_read(struct i2c_adapter *adap,
{.addr = adr, .flags = I2C_M_RD, {.addr = adr, .flags = I2C_M_RD,
.buf = answ, .len = alen} .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); status = i2c_transfer(adap, msgs, 2);
if (status != 2) { if (status != 2) {
if (debug > 2) if (debug > 2)
...@@ -374,9 +368,12 @@ static int i2c_read(struct i2c_adapter *adap, ...@@ -374,9 +368,12 @@ static int i2c_read(struct i2c_adapter *adap,
} }
if (debug > 2) { if (debug > 2) {
int i; int i;
printk(KERN_CONT ": Read "); dprintk(2, ": read from ");
for (i = 0; i < len; i++) for (i = 0; i < len; i++)
printk(KERN_CONT " %02x", msg[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"); printk(KERN_CONT "\n");
} }
return 0; return 0;
...@@ -1075,7 +1072,7 @@ static int GetDeviceCapabilities(struct drxk_state *state) ...@@ -1075,7 +1072,7 @@ static int GetDeviceCapabilities(struct drxk_state *state)
state->m_hasIRQN = false; state->m_hasIRQN = false;
break; break;
default: default:
printk(KERN_ERR "drxk: DeviceID not supported = %02x\n", printk(KERN_ERR "drxk: DeviceID 0x%02x not supported\n",
((sioTopJtagidLo >> 12) & 0xFF)); ((sioTopJtagidLo >> 12) & 0xFF));
status = -EINVAL; status = -EINVAL;
goto error2; goto error2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment