net: ti: icssg: Add ICSSG ethernet driver
[u-boot.git] / arch / arm / mach-k3 / common.c
index b0fb87b97a20962688ef06eaf33362319e1017ff..d151277d6d48cb20508da8ef85a4a6af29810383 100644 (file)
@@ -270,6 +270,17 @@ int misc_init_r(void)
                        printf("Failed to probe am65_cpsw_nuss driver\n");
        }
 
+       if (IS_ENABLED(CONFIG_TI_ICSSG_PRUETH)) {
+               struct udevice *dev;
+               int ret;
+
+               ret = uclass_get_device_by_driver(UCLASS_MISC,
+                                                 DM_DRIVER_GET(prueth),
+                                                 &dev);
+               if (ret)
+                       printf("Failed to probe prueth driver\n");
+       }
+
        /* Default FIT boot on HS-SE devices */
        if (get_device_type() == K3_DEVICE_TYPE_HS_SE)
                env_set("boot_fit", "1");
This page took 0.02576 seconds and 4 git commands to generate.