Message ID | 20201215145454.1905175-1-trix@redhat.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | a876e7e2a8e62712425be178d483ffdff09f0853 |
Delegated to: | Jiri Kosina |
Headers | show |
Series | HID: uclogic: remove h from printk format specifier | expand |
On Tue, 15 Dec 2020, trix@redhat.com wrote: > From: Tom Rix <trix@redhat.com> > > See Documentation/core-api/printk-formats.rst. > h should no longer be used in the format specifier for printk. > > Signed-off-by: Tom Rix <trix@redhat.com> Applied, thanks.
diff --git a/drivers/hid/hid-uclogic-params.c b/drivers/hid/hid-uclogic-params.c index d26d8cd98efc..56406cee401f 100644 --- a/drivers/hid/hid-uclogic-params.c +++ b/drivers/hid/hid-uclogic-params.c @@ -90,7 +90,7 @@ static int uclogic_params_get_str_desc(__u8 **pbuf, struct hid_device *hdev, goto cleanup; } else if (rc < 0) { hid_err(hdev, - "failed retrieving string descriptor #%hhu: %d\n", + "failed retrieving string descriptor #%u: %d\n", idx, rc); goto cleanup; }