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 <trix@redhat.com>
Link: https://lore.kernel.org/r/20201215183237.2071770-1-trix@redhat.com
[groeck: Updated subject]
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
Tom Rix 2020-12-15 10:32:37 -08:00 committed by Guenter Roeck
parent 94c08e067a
commit 87da1ed26c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}