diff options
Diffstat (limited to 'drivers/w1/w1-uclass.c')
-rw-r--r-- | drivers/w1/w1-uclass.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/w1/w1-uclass.c b/drivers/w1/w1-uclass.c index af1fe5fd22..8bc6cb13f4 100644 --- a/drivers/w1/w1-uclass.c +++ b/drivers/w1/w1-uclass.c @@ -130,14 +130,14 @@ int w1_get_bus(int busnum, struct udevice **busp) u8 w1_get_device_family(struct udevice *dev) { - struct w1_device *w1 = dev_get_parent_platdata(dev); + struct w1_device *w1 = dev_get_parent_plat(dev); return w1->id & 0xff; } int w1_reset_select(struct udevice *dev) { - struct w1_device *w1 = dev_get_parent_platdata(dev); + struct w1_device *w1 = dev_get_parent_plat(dev); struct udevice *bus = dev_get_parent(dev); const struct w1_ops *ops = device_get_ops(bus); int i; @@ -235,5 +235,5 @@ UCLASS_DRIVER(w1) = { #if CONFIG_IS_ENABLED(OF_CONTROL) .post_bind = dm_scan_fdt_dev, #endif - .per_child_platdata_auto = sizeof(struct w1_device), + .per_child_plat_auto = sizeof(struct w1_device), }; |