summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHal Feng <hal.feng@starfivetech.com>2023-05-19 11:24:40 +0300
committerAndy Hu <andy.hu@starfivetech.com>2023-06-07 14:33:32 +0300
commit9501c1c44a178755d190f23e1b4b2f16761970ce (patch)
tree475c7604cba72a10dd95541e9ddf751ca2f8a26f
parent552991a93f75fa46f5ccf35345212daae3bd2fbd (diff)
downloadlinux-9501c1c44a178755d190f23e1b4b2f16761970ce.tar.xz
pinctrl: starfive: Correct the print message
Correct the message printed when registering gpio_chip successfully. Signed-off-by: Hal Feng <hal.feng@starfivetech.com>
-rwxr-xr-xdrivers/pinctrl/starfive/pinctrl-starfive-jh7110.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/starfive/pinctrl-starfive-jh7110.c b/drivers/pinctrl/starfive/pinctrl-starfive-jh7110.c
index 3eaf802073a4..b99cdeb4a95e 100755
--- a/drivers/pinctrl/starfive/pinctrl-starfive-jh7110.c
+++ b/drivers/pinctrl/starfive/pinctrl-starfive-jh7110.c
@@ -1003,7 +1003,7 @@ static int starfive_jh7110_sys_gpio_register(struct platform_device *pdev,
GPIO_INPUT_ENABLE_X_REG + (loop << 2));
}
- dev_info(dev, "SiFive GPIO chip registered %d GPIOs\n", ngpio);
+ dev_info(dev, "StarFive GPIO chip registered %d GPIOs\n", ngpio);
return 0;
}
@@ -1707,7 +1707,7 @@ static int starfive_jh7110_aon_gpio_register(struct platform_device *pdev,
AON_GPIO_INPUT_ENABLE_REG + (loop << 2));
}
- dev_info(dev, "SiFive GPIO chip registered %d GPIOs\n", ngpio);
+ dev_info(dev, "StarFive GPIO chip registered %d GPIOs\n", ngpio);
return 0;
}