summaryrefslogtreecommitdiff
path: root/drivers/hid/intel-ish-hid
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2021-05-14 16:58:50 +0300
committerJiri Kosina <jkosina@suse.cz>2021-05-27 16:40:34 +0300
commitdc5f9f55502e13ba05731d5046a14620aa2ff456 (patch)
tree176b57258b5d53cd9aa37c825c85f7422cc89667 /drivers/hid/intel-ish-hid
parent5ad755fd2b326aa2bc8910b0eb351ee6aece21b1 (diff)
downloadlinux-dc5f9f55502e13ba05731d5046a14620aa2ff456.tar.xz
HID: i2c-hid: fix format string mismatch
clang doesn't like printing a 32-bit integer using %hX format string: drivers/hid/i2c-hid/i2c-hid-core.c:994:18: error: format specifies type 'unsigned short' but the argument has type '__u32' (aka 'unsigned int') [-Werror,-Wformat] client->name, hid->vendor, hid->product); ^~~~~~~~~~~ drivers/hid/i2c-hid/i2c-hid-core.c:994:31: error: format specifies type 'unsigned short' but the argument has type '__u32' (aka 'unsigned int') [-Werror,-Wformat] client->name, hid->vendor, hid->product); ^~~~~~~~~~~~ Use an explicit cast to truncate it to the low 16 bits instead. Fixes: 9ee3e06610fd ("HID: i2c-hid: override HID descriptors for certain devices") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Nathan Chancellor <nathan@kernel.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/intel-ish-hid')
0 files changed, 0 insertions, 0 deletions