[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210125164528.2101360-1-trix@redhat.com>
Date: Mon, 25 Jan 2021 08:45:28 -0800
From: trix@...hat.com
To: richardcochran@...il.com, andrew@...n.ch, hkallweit1@...il.com,
linux@...linux.org.uk, davem@...emloft.net, kuba@...nel.org
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
Tom Rix <trix@...hat.com>
Subject: [PATCH] net: phy: remove h from printk format specifier
From: Tom Rix <trix@...hat.com>
This change fixes the checkpatch warning described in this commit
commit cbacb5ab0aa0 ("docs: printk-formats: Stop encouraging use of
unnecessary %h[xudi] and %hh[xudi]")
Standard integer promotion is already done and %hx and %hhx is useless
so do not encourage the use of %hh[xudi] or %h[xudi].
Signed-off-by: Tom Rix <trix@...hat.com>
---
drivers/net/phy/dp83640.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/phy/dp83640.c b/drivers/net/phy/dp83640.c
index 0d79f68f301c..1bc68a3bffa2 100644
--- a/drivers/net/phy/dp83640.c
+++ b/drivers/net/phy/dp83640.c
@@ -186,7 +186,7 @@ static void dp83640_gpio_defaults(struct ptp_pin_desc *pd)
for (i = 0; i < GPIO_TABLE_SIZE; i++) {
if (gpio_tab[i] < 1 || gpio_tab[i] > DP83640_N_PINS) {
- pr_err("gpio_tab[%d]=%hu out of range", i, gpio_tab[i]);
+ pr_err("gpio_tab[%d]=%u out of range", i, gpio_tab[i]);
return;
}
}
--
2.27.0
Powered by blists - more mailing lists