[PATCH 3/3] pinctrl: at91: use dev_dbg() instead of printk()
Claudiu Beznea
claudiu.beznea at microchip.com
Wed Aug 31 06:56:36 PDT 2022
Use dev_dbg() instead of printk(KERN_DEBUG) to avoid the following
checkpatch.pl warning:
"Prefer [subsystem eg: netdev]_dbg([subsystem]dev, ... then
dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ...".
Signed-off-by: Claudiu Beznea <claudiu.beznea at microchip.com>
---
drivers/pinctrl/pinctrl-at91.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/pinctrl/pinctrl-at91.c b/drivers/pinctrl/pinctrl-at91.c
index 631a6289c2b6..81dbffab621f 100644
--- a/drivers/pinctrl/pinctrl-at91.c
+++ b/drivers/pinctrl/pinctrl-at91.c
@@ -1659,8 +1659,8 @@ static int at91_gpio_suspend(struct device *dev)
if (!at91_chip->wakeups)
clk_disable_unprepare(at91_chip->clock);
else
- printk(KERN_DEBUG "GPIO-%c may wake for %08x\n",
- 'A' + at91_chip->id, at91_chip->wakeups);
+ dev_dbg(dev, "GPIO-%c may wake for %08x\n",
+ 'A' + at91_chip->id, at91_chip->wakeups);
return 0;
}
--
2.34.1
More information about the linux-arm-kernel
mailing list