Commit 87da1ed2 authored by Tom Rix's avatar Tom Rix Committed by Guenter Roeck
Browse files

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: default avatarTom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201215183237.2071770-1-trix@redhat.com


[groeck: Updated subject]
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 94c08e06
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
			}