s/claim_device/device_claim/
[project/netifd.git] / vlan.c
diff --git a/vlan.c b/vlan.c
index 208ff73..85fe078 100644 (file)
--- a/vlan.c
+++ b/vlan.c
@@ -36,7 +36,7 @@ static int vlan_set_device_state(struct device *dev, bool up)
                return 0;
        }
 
-       ret = claim_device(vldev->dep.dev);
+       ret = device_claim(vldev->dep.dev);
        if (ret)
                return ret;
 
@@ -92,7 +92,7 @@ static struct device *get_vlan_device(struct device *dev, int id, bool create)
        vldev = calloc(1, sizeof(*vldev));
        snprintf(vldev->dev.ifname, IFNAMSIZ, "%s.%d", dev->ifname, id);
 
-       init_device(&vldev->dev, &vlan_type, NULL);
+       device_init(&vldev->dev, &vlan_type, NULL);
 
        vldev->set_state = vldev->dev.set_state;
        vldev->dev.set_state = vlan_set_device_state;