mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 17:23:25 -05:00
i2c-taos-evm: Fix log messages
* Print all error and information messages even when debugging is disabled. * Don't use adapter device to log messages before it is ready. Signed-off-by: Jean Delvare <khali@linux-fr.org> Cc: stable@kernel.org
This commit is contained in:
parent
b0af8dfdd6
commit
9b640f2e15
1 changed files with 4 additions and 4 deletions
|
@ -234,7 +234,7 @@ static int taos_connect(struct serio *serio, struct serio_driver *drv)
|
||||||
|
|
||||||
if (taos->state != TAOS_STATE_IDLE) {
|
if (taos->state != TAOS_STATE_IDLE) {
|
||||||
err = -ENODEV;
|
err = -ENODEV;
|
||||||
dev_dbg(&serio->dev, "TAOS EVM reset failed (state=%d, "
|
dev_err(&serio->dev, "TAOS EVM reset failed (state=%d, "
|
||||||
"pos=%d)\n", taos->state, taos->pos);
|
"pos=%d)\n", taos->state, taos->pos);
|
||||||
goto exit_close;
|
goto exit_close;
|
||||||
}
|
}
|
||||||
|
@ -255,7 +255,7 @@ static int taos_connect(struct serio *serio, struct serio_driver *drv)
|
||||||
msecs_to_jiffies(250));
|
msecs_to_jiffies(250));
|
||||||
if (taos->state != TAOS_STATE_IDLE) {
|
if (taos->state != TAOS_STATE_IDLE) {
|
||||||
err = -ENODEV;
|
err = -ENODEV;
|
||||||
dev_err(&adapter->dev, "Echo off failed "
|
dev_err(&serio->dev, "TAOS EVM echo off failed "
|
||||||
"(state=%d)\n", taos->state);
|
"(state=%d)\n", taos->state);
|
||||||
goto exit_close;
|
goto exit_close;
|
||||||
}
|
}
|
||||||
|
@ -263,7 +263,7 @@ static int taos_connect(struct serio *serio, struct serio_driver *drv)
|
||||||
err = i2c_add_adapter(adapter);
|
err = i2c_add_adapter(adapter);
|
||||||
if (err)
|
if (err)
|
||||||
goto exit_close;
|
goto exit_close;
|
||||||
dev_dbg(&serio->dev, "Connected to TAOS EVM\n");
|
dev_info(&serio->dev, "Connected to TAOS EVM\n");
|
||||||
|
|
||||||
taos->client = taos_instantiate_device(adapter);
|
taos->client = taos_instantiate_device(adapter);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -288,7 +288,7 @@ static void taos_disconnect(struct serio *serio)
|
||||||
serio_set_drvdata(serio, NULL);
|
serio_set_drvdata(serio, NULL);
|
||||||
kfree(taos);
|
kfree(taos);
|
||||||
|
|
||||||
dev_dbg(&serio->dev, "Disconnected from TAOS EVM\n");
|
dev_info(&serio->dev, "Disconnected from TAOS EVM\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct serio_device_id taos_serio_ids[] = {
|
static struct serio_device_id taos_serio_ids[] = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue