diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2016-07-28 14:22:13 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2016-08-03 02:37:42 -0400 |
commit | 014420fe8865e981331024ef0cef14d1e29102a3 (patch) | |
tree | 2bc23e639deb2827e06a0e894d8a5e0ca586d713 | |
parent | d205a2185938e38c8667405dc44cd6221c71682e (diff) |
Input: elantech - fix debug dump of the current packet
The use of mixed psmouse_printk() and printk creates 2 lines in the log,
while the use of %*ph solves everything.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/mouse/elantech.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/input/mouse/elantech.c b/drivers/input/mouse/elantech.c index 615d23ec0d8e..08e252a42480 100644 --- a/drivers/input/mouse/elantech.c +++ b/drivers/input/mouse/elantech.c | |||
@@ -222,12 +222,8 @@ static int elantech_write_reg(struct psmouse *psmouse, unsigned char reg, | |||
222 | */ | 222 | */ |
223 | static void elantech_packet_dump(struct psmouse *psmouse) | 223 | static void elantech_packet_dump(struct psmouse *psmouse) |
224 | { | 224 | { |
225 | int i; | 225 | psmouse_printk(KERN_DEBUG, psmouse, "PS/2 packet [%*ph]\n", |
226 | 226 | psmouse->pktsize, psmouse->packet); | |
227 | psmouse_printk(KERN_DEBUG, psmouse, "PS/2 packet ["); | ||
228 | for (i = 0; i < psmouse->pktsize; i++) | ||
229 | printk("%s0x%02x ", i ? ", " : " ", psmouse->packet[i]); | ||
230 | printk("]\n"); | ||
231 | } | 227 | } |
232 | 228 | ||
233 | /* | 229 | /* |