1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

rtc: rx8010sj: fix DM initialization

pass the udevice by reference instead of double ref

Signed-off-by: Robert Beckett <bob.beckett@collabora.com>
This commit is contained in:
Robert Beckett
2019-10-28 18:49:15 +00:00
committed by Stefano Babic
parent 576434b205
commit a00b1f9d7a

View File

@@ -349,7 +349,7 @@ void rtc_init(void)
static int rx8010sj_probe(struct udevice *dev)
{
rx8010sj_rtc_init(&dev);
rx8010sj_rtc_init(dev);
return 0;
}