net_ethoc.h 286 B

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