rtc: goldfish_rtc_probe should be static

There is no need to export goldfish_rtc_probe().

Fixes: 2d6dc19fd2 ("rtc: driver for Goldfish RTC")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
Heinrich Schuchardt 2024-03-21 21:16:13 +01:00 committed by Tom Rini
parent 32bc256ced
commit 6821d13fb0

View file

@ -72,7 +72,7 @@ static int goldfish_rtc_set(struct udevice *dev, const struct rtc_time *time)
return 0;
}
int goldfish_rtc_probe(struct udevice *dev)
static int goldfish_rtc_probe(struct udevice *dev)
{
struct goldfish_rtc *priv = dev_get_priv(dev);
fdt_addr_t addr;