Commit 4d2b7163 authored by Tom Rix's avatar Tom Rix Committed by Jiri Kosina

HID: wiimote: remove h from printk format specifier

See Documentation/core-api/printk-formats.rst.
h should no longer be used in the format specifier for printk.
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent a876e7e2
......@@ -1482,7 +1482,7 @@ static void handler_return(struct wiimote_data *wdata, const __u8 *payload)
wdata->state.cmd_err = err;
wiimote_cmd_complete(wdata);
} else if (err) {
hid_warn(wdata->hdev, "Remote error %hhu on req %hhu\n", err,
hid_warn(wdata->hdev, "Remote error %u on req %u\n", err,
cmd);
}
}
......
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