diff options
author | Tom Rini | 2022-11-27 10:25:11 -0500 |
---|---|---|
committer | Tom Rini | 2022-12-07 16:04:17 -0500 |
commit | ecca44805d9a00e8e9ac6c14d9e7293565900981 (patch) | |
tree | a28431cc5bbeaa8ad4200db686d4a1c1887696b0 /include/dm | |
parent | 4fb814f571e01a3702e9d58497c57e1892070c2e (diff) |
net: ethoc: Remove non-DM_ETH code
As DM_ETH is required for all network drivers, it's now safe to
remove the non-DM_ETH support code.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/dm')
-rw-r--r-- | include/dm/platform_data/net_ethoc.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/dm/platform_data/net_ethoc.h b/include/dm/platform_data/net_ethoc.h index 855e9999a0a..44547d14f53 100644 --- a/include/dm/platform_data/net_ethoc.h +++ b/include/dm/platform_data/net_ethoc.h @@ -8,13 +8,9 @@ #include <net.h> -#ifdef CONFIG_DM_ETH - struct ethoc_eth_pdata { struct eth_pdata eth_pdata; phys_addr_t packet_base; }; -#endif - #endif /* _ETHOC_H */ |