diff options
| author | Chintan Vankar <[email protected]> | 2025-07-31 13:29:37 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-08-20 11:06:18 -0600 |
| commit | 50ededad3204072a5fe6b8ee49826643e7c8e7aa (patch) | |
| tree | 0d5d240275c5f7ac7665099590d2c6cdc6254637 /arch | |
| parent | 3943531a54680b76813960655458e88f49f6bfb7 (diff) | |
arch: mach-k3: common: Remove explicit probing of CPSW driver
This reverts commit e58d9284850fa78d364d264087fe744717963675.
Bind method of am65_cpsw_nuss driver will ensure binding of it's child
driver am65_cpsw_nuss_ports, and there is no need to call CPSW driver
explicitly. Remove explicit probing of CPSW driver for AM62x.
Signed-off-by: Chintan Vankar <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/mach-k3/common.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/arm/mach-k3/common.c b/arch/arm/mach-k3/common.c index f8c53b286eb..5483ac9906c 100644 --- a/arch/arm/mach-k3/common.c +++ b/arch/arm/mach-k3/common.c @@ -322,17 +322,6 @@ void spl_board_prepare_for_linux(void) int misc_init_r(void) { - if (IS_ENABLED(CONFIG_TI_AM65_CPSW_NUSS)) { - struct udevice *dev; - int ret; - - ret = uclass_get_device_by_driver(UCLASS_MISC, - DM_DRIVER_GET(am65_cpsw_nuss), - &dev); - if (ret) - printf("Failed to probe am65_cpsw_nuss driver\n"); - } - if (IS_ENABLED(CONFIG_TI_ICSSG_PRUETH)) { struct udevice *dev; int ret; |
