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