Signed-off-by: Andy Shevchenko <[email protected]>
---
 drivers/input/mouse/alps.c |   14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c
index cf5af1f..b4a3faf 100644
--- a/drivers/input/mouse/alps.c
+++ b/drivers/input/mouse/alps.c
@@ -766,10 +766,9 @@ static psmouse_ret_t alps_handle_interleaved_ps2(struct 
psmouse *psmouse)
                      psmouse->packet[4] |
                      psmouse->packet[5]) & 0x80) ||
                    (!alps_is_valid_first_byte(priv->i, psmouse->packet[6]))) {
-                       psmouse_dbg(psmouse,
-                                   "refusing packet %x %x %x %x (suspected 
interleaved ps/2)\n",
-                                   psmouse->packet[3], psmouse->packet[4],
-                                   psmouse->packet[5], psmouse->packet[6]);
+                       psmouse_dbg(psmouse, "refusing packet %4ph "
+                                   "(suspected interleaved ps/2)\n",
+                                   psmouse->packet + 3);
                        return PSMOUSE_BAD_DATA;
                }
 
@@ -830,10 +829,9 @@ static void alps_flush_packet(unsigned long data)
                if ((psmouse->packet[3] |
                     psmouse->packet[4] |
                     psmouse->packet[5]) & 0x80) {
-                       psmouse_dbg(psmouse,
-                                   "refusing packet %x %x %x (suspected 
interleaved ps/2)\n",
-                                   psmouse->packet[3], psmouse->packet[4],
-                                   psmouse->packet[5]);
+                       psmouse_dbg(psmouse, "refusing packet %3ph "
+                                   "(suspected interleaved ps/2)\n",
+                                   psmouse->packet + 3);
                } else {
                        alps_process_packet(psmouse);
                }
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to