]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sysreset: Mark driver probe functions as static
authorSamuel Holland <samuel@sholland.org>
Thu, 4 Nov 2021 03:55:12 +0000 (22:55 -0500)
committerStefan Roese <sr@denx.de>
Thu, 4 Nov 2021 07:57:19 +0000 (08:57 +0100)
These driver probe functions are not (and should not be) called from
outside the respective driver source files. Therefore, the functions
should be marked static.

Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Signed-off-by: Samuel Holland <samuel@sholland.org>
Reviewed-by: Stefan Roese <sr@denx.de>
drivers/sysreset/sysreset_gpio.c
drivers/sysreset/sysreset_resetctl.c
drivers/sysreset/sysreset_syscon.c
drivers/sysreset/sysreset_watchdog.c

index 680b759eb3cc49fcf53498b1ded1627a8b907444..dfca10ccc8e5fadcd0592e7e413e89b49ef67bd2 100644 (file)
@@ -33,7 +33,7 @@ static struct sysreset_ops gpio_reboot_ops = {
        .request = gpio_reboot_request,
 };
 
-int gpio_reboot_probe(struct udevice *dev)
+static int gpio_reboot_probe(struct udevice *dev)
 {
        struct gpio_reboot_priv *priv = dev_get_priv(dev);
 
index c039521eb432bc68178ad5afda707fface7427f4..25bd5c9a7ff2725a705783e203f877f6d3fa6646 100644 (file)
@@ -26,7 +26,7 @@ static struct sysreset_ops resetctl_reboot_ops = {
        .request = resetctl_reboot_request,
 };
 
-int resetctl_reboot_probe(struct udevice *dev)
+static int resetctl_reboot_probe(struct udevice *dev)
 {
        struct resetctl_reboot_priv *priv = dev_get_priv(dev);
 
index 28fdfb09781982ae2eba8d43654740ad90c014b3..525faf2f89e26c610331a8537569941aee0e0c69 100644 (file)
@@ -39,7 +39,7 @@ static struct sysreset_ops syscon_reboot_ops = {
        .request = syscon_reboot_request,
 };
 
-int syscon_reboot_probe(struct udevice *dev)
+static int syscon_reboot_probe(struct udevice *dev)
 {
        struct syscon_reboot_priv *priv = dev_get_priv(dev);
        int err;
index 0dc2d8b9b65ed7ce745d56c04d3ab6db7cdfc85e..c7ae368d41aa8ebb8f4817d407869c77a539c02d 100644 (file)
@@ -29,7 +29,7 @@ static struct sysreset_ops wdt_reboot_ops = {
        .request = wdt_reboot_request,
 };
 
-int wdt_reboot_probe(struct udevice *dev)
+static int wdt_reboot_probe(struct udevice *dev)
 {
        struct wdt_reboot_priv *priv = dev_get_priv(dev);
        int err;