diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-02-14 12:04:24 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-04-15 16:40:22 -0400 |
commit | 39fbe5855737b2a2b8e097373951bbe1a4fdb345 (patch) | |
tree | d101315254f1a743fa6eadd00883f63cd05c2d3d /drivers/input | |
parent | cbaf7f808081e10bd2a1d57cc9ef0c5138ca23ce (diff) |
Input: ALPS - use %ph to print buffers
This form is more concise.
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/mouse/alps.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c index 0238e0e14335..7c5d72a6a26a 100644 --- a/drivers/input/mouse/alps.c +++ b/drivers/input/mouse/alps.c | |||
@@ -1013,8 +1013,8 @@ static int alps_rpt_cmd(struct psmouse *psmouse, int init_command, | |||
1013 | if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) | 1013 | if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) |
1014 | return -EIO; | 1014 | return -EIO; |
1015 | 1015 | ||
1016 | psmouse_dbg(psmouse, "%2.2X report: %2.2x %2.2x %2.2x\n", | 1016 | psmouse_dbg(psmouse, "%2.2X report: %3ph\n", |
1017 | repeated_command, param[0], param[1], param[2]); | 1017 | repeated_command, param); |
1018 | return 0; | 1018 | return 0; |
1019 | } | 1019 | } |
1020 | 1020 | ||
@@ -1274,9 +1274,7 @@ static int alps_setup_trackstick_v3(struct psmouse *psmouse, int reg_base) | |||
1274 | psmouse_warn(psmouse, "trackstick E7 report failed\n"); | 1274 | psmouse_warn(psmouse, "trackstick E7 report failed\n"); |
1275 | ret = -ENODEV; | 1275 | ret = -ENODEV; |
1276 | } else { | 1276 | } else { |
1277 | psmouse_dbg(psmouse, | 1277 | psmouse_dbg(psmouse, "trackstick E7 report: %3ph\n", param); |
1278 | "trackstick E7 report: %2.2x %2.2x %2.2x\n", | ||
1279 | param[0], param[1], param[2]); | ||
1280 | 1278 | ||
1281 | /* | 1279 | /* |
1282 | * Not sure what this does, but it is absolutely | 1280 | * Not sure what this does, but it is absolutely |
@@ -1323,6 +1321,7 @@ static int alps_hw_init_v3(struct psmouse *psmouse) | |||
1323 | reg_val = alps_probe_trackstick_v3(psmouse, ALPS_REG_BASE_PINNACLE); | 1321 | reg_val = alps_probe_trackstick_v3(psmouse, ALPS_REG_BASE_PINNACLE); |
1324 | if (reg_val == -EIO) | 1322 | if (reg_val == -EIO) |
1325 | goto error; | 1323 | goto error; |
1324 | |||
1326 | if (reg_val == 0 && | 1325 | if (reg_val == 0 && |
1327 | alps_setup_trackstick_v3(psmouse, ALPS_REG_BASE_PINNACLE) == -EIO) | 1326 | alps_setup_trackstick_v3(psmouse, ALPS_REG_BASE_PINNACLE) == -EIO) |
1328 | goto error; | 1327 | goto error; |
@@ -1676,8 +1675,7 @@ static int alps_identify(struct psmouse *psmouse, struct alps_data *priv) | |||
1676 | } | 1675 | } |
1677 | 1676 | ||
1678 | psmouse_info(psmouse, | 1677 | psmouse_info(psmouse, |
1679 | "Unknown ALPS touchpad: E7=%2.2x %2.2x %2.2x, EC=%2.2x %2.2x %2.2x\n", | 1678 | "Unknown ALPS touchpad: E7=%3ph, EC=%3ph\n", e7, ec); |
1680 | e7[0], e7[1], e7[2], ec[0], ec[1], ec[2]); | ||
1681 | 1679 | ||
1682 | return -EINVAL; | 1680 | return -EINVAL; |
1683 | } | 1681 | } |