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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
	}
}