diff mbox series

[U-Boot,v2,10/10] rtc: Allow child drivers

Message ID 20181118151435.111676-11-sjg@chromium.org
State Accepted
Commit 68c81fb6658bb2b8818d73f52788ea54322acb93
Delegated to: Simon Glass
Headers show
Series Various fixes and improvements | expand

Commit Message

Simon Glass Nov. 18, 2018, 3:14 p.m. UTC
Some RTC chips have child drivers, e.g. to provide access to their
non-volatile RAM. Scan for these when binding.

Signed-off-by: Simon Glass <sjg@chromium.org>

---

Changes in v2:
- Drop patches previously applied
- Add new patches to support the RTC change

 drivers/rtc/rtc-uclass.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Simon Glass Nov. 29, 2018, 5:39 p.m. UTC | #1
Some RTC chips have child drivers, e.g. to provide access to their
non-volatile RAM. Scan for these when binding.

Signed-off-by: Simon Glass <sjg@chromium.org>

---

Changes in v2:
- Drop patches previously applied
- Add new patches to support the RTC change

 drivers/rtc/rtc-uclass.c | 1 +
 1 file changed, 1 insertion(+)

Applied to u-boot-dm/master, thanks!
diff mbox series

Patch

diff --git a/drivers/rtc/rtc-uclass.c b/drivers/rtc/rtc-uclass.c
index c676f0ff359..a0a238aedda 100644
--- a/drivers/rtc/rtc-uclass.c
+++ b/drivers/rtc/rtc-uclass.c
@@ -122,4 +122,5 @@  int rtc_write32(struct udevice *dev, unsigned int reg, u32 value)
 UCLASS_DRIVER(rtc) = {
 	.name		= "rtc",
 	.id		= UCLASS_RTC,
+	.post_bind	= dm_scan_fdt_dev,
 };