sysreset: Mark driver probe functions as static

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>
This commit is contained in:
Samuel Holland 2021-11-03 22:55:12 -05:00 committed by Stefan Roese
parent 6b84217227
commit 30ba45dbd6
4 changed files with 4 additions and 4 deletions

View 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);

View 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);

View 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;

View 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;