static int dwc_eth_dwmac_config_dt(struct platform_device *pdev,
                                   struct plat_stmmacenet_data *plat_dat)
 {
-       struct device_node *np = pdev->dev.of_node;
+       struct device *dev = &pdev->dev;
        u32 burst_map = 0;
        u32 bit_index = 0;
        u32 a_index = 0;
                        return -ENOMEM;
        }
 
-       plat_dat->axi->axi_lpi_en = of_property_read_bool(np, "snps,en-lpi");
-       if (of_property_read_u32(np, "snps,write-requests",
-                                &plat_dat->axi->axi_wr_osr_lmt)) {
+       plat_dat->axi->axi_lpi_en = device_property_read_bool(dev,
+                                                             "snps,en-lpi");
+       if (device_property_read_u32(dev, "snps,write-requests",
+                                    &plat_dat->axi->axi_wr_osr_lmt)) {
                /**
                 * Since the register has a reset value of 1, if property
                 * is missing, default to 1.
                plat_dat->axi->axi_wr_osr_lmt--;
        }
 
-       if (of_property_read_u32(np, "snps,read-requests",
-                                &plat_dat->axi->axi_rd_osr_lmt)) {
+       if (device_property_read_u32(dev, "snps,read-requests",
+                                    &plat_dat->axi->axi_rd_osr_lmt)) {
                /**
                 * Since the register has a reset value of 1, if property
                 * is missing, default to 1.
                 */
                plat_dat->axi->axi_rd_osr_lmt--;
        }
-       of_property_read_u32(np, "snps,burst-map", &burst_map);
+       device_property_read_u32(dev, "snps,burst-map", &burst_map);
 
        /* converts burst-map bitmask to burst array */
        for (bit_index = 0; bit_index < 7; bit_index++) {
        void *priv;
        int ret;
 
-       data = of_device_get_match_data(&pdev->dev);
+       data = device_get_match_data(&pdev->dev);
 
        memset(&stmmac_res, 0, sizeof(struct stmmac_resources));
 
        const struct dwc_eth_dwmac_data *data;
        int err;
 
-       data = of_device_get_match_data(&pdev->dev);
+       data = device_get_match_data(&pdev->dev);
 
        err = stmmac_dvr_remove(&pdev->dev);
        if (err < 0)