Commit 99ff4d3a authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: jornada720_kbd - switch to using dev_dbg

Switch to using dev_dbg instead of naked printk so that output is uniform
with the other driver messages in the kernel.
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 0f631d87
...@@ -65,10 +65,8 @@ static irqreturn_t jornada720_kbd_interrupt(int irq, void *dev_id) ...@@ -65,10 +65,8 @@ static irqreturn_t jornada720_kbd_interrupt(int irq, void *dev_id)
jornada_ssp_start(); jornada_ssp_start();
if (jornada_ssp_inout(GETSCANKEYCODE) != TXDUMMY) { if (jornada_ssp_inout(GETSCANKEYCODE) != TXDUMMY) {
printk(KERN_DEBUG dev_dbg(&pdev->dev,
"jornada720_kbd: " "GetKeycode command failed with ETIMEDOUT, flushed bus\n");
"GetKeycode command failed with ETIMEDOUT, "
"flushed bus\n");
} else { } else {
/* How many keycodes are waiting for us? */ /* How many keycodes are waiting for us? */
count = jornada_ssp_byte(TXDUMMY); count = jornada_ssp_byte(TXDUMMY);
......
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