]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - drivers/pinctrl/pinctrl-generic.c
dm: core: Replace of_offset with accessor
[people/ms/u-boot.git] / drivers / pinctrl / pinctrl-generic.c
index 3629322dbb380ad9867dfcd855ef22eb55556d24..0272496b51d13ba8613c5e555b27cc0ac240f1e5 100644 (file)
@@ -245,7 +245,7 @@ static int pinctrl_generic_set_state_one(struct udevice *dev,
                                         bool is_group, unsigned selector)
 {
        const void *fdt = gd->fdt_blob;
-       int node_offset = config->of_offset;
+       int node_offset = dev_of_offset(config);
        const char *propname;
        const void *value;
        int prop_offset, len, func_selector, param, ret;
@@ -300,7 +300,7 @@ static int pinctrl_generic_set_state_subnode(struct udevice *dev,
                                             struct udevice *config)
 {
        const void *fdt = gd->fdt_blob;
-       int node = config->of_offset;
+       int node = dev_of_offset(config);
        const char *subnode_target_type = "pins";
        bool is_group = false;
        const char *name;