xref: /openbmc/u-boot/include/dm/platform_data/net_ethoc.h (revision 9ec4a67ef342b2dbcecc9721f5369f022ea59b26)
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