From: Tom Rix Date: Tue, 15 Dec 2020 18:32:37 +0000 (-0800) Subject: hwmon: (smsc47m1) Remove 'h' from printk format specifier X-Git-Tag: v5.12-rc1~122^2~26 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=87da1ed26c335908d4593b3777aae8f0e6446c4e;p=linux-block.git hwmon: (smsc47m1) 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: Tom Rix Link: https://lore.kernel.org/r/20201215183237.2071770-1-trix@redhat.com [groeck: Updated subject] Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/smsc47m1.c b/drivers/hwmon/smsc47m1.c index b637836b58a1..37531b5c8254 100644 --- a/drivers/hwmon/smsc47m1.c +++ b/drivers/hwmon/smsc47m1.c @@ -682,7 +682,7 @@ static int __init smsc47m1_handle_resources(unsigned short address, /* Request the resources */ if (!devm_request_region(dev, start, len, DRVNAME)) { dev_err(dev, - "Region 0x%hx-0x%hx already in use!\n", + "Region 0x%x-0x%x already in use!\n", start, start + len); return -EBUSY; }