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