diff mbox

[U-Boot,v2,57/71] sandbox: phy: Update driver for livetree

Message ID 20170510142150.30515-58-sjg@chromium.org
State Accepted
Commit 5204e9b86bbb5d7279f15e51683b6c9180ea1357
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass May 10, 2017, 2:21 p.m. UTC
Update the sandbox phy driver to support livetree.

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

Changes in v2: None

 drivers/phy/sandbox-phy.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox

Patch

diff --git a/drivers/phy/sandbox-phy.c b/drivers/phy/sandbox-phy.c
index 9ad820c24c..867c6fe704 100644
--- a/drivers/phy/sandbox-phy.c
+++ b/drivers/phy/sandbox-phy.c
@@ -80,8 +80,7 @@  static int sandbox_phy_probe(struct udevice *dev)
 
 	priv->initialized = false;
 	priv->on = false;
-	priv->broken = fdtdec_get_bool(gd->fdt_blob, dev_of_offset(dev),
-				       "broken");
+	priv->broken = dev_read_bool(dev, "broken");
 
 	return 0;
 }