1 /* 2 * Copyright (C) 2016 Cadence Design Systems Inc. 3 * 4 * SPDX-License-Identifier: GPL-2.0 5 */ 6 7 #ifndef _ETHOC_H 8 #define _ETHOC_H 9 10 #include <net.h> 11 12 #ifdef CONFIG_DM_ETH 13 14 struct ethoc_eth_pdata { 15 struct eth_pdata eth_pdata; 16 phys_addr_t packet_base; 17 }; 18 19 #endif 20 21 #endif /* _ETHOC_H */ 22