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
11struct ethoc_eth_pdata {
12	struct eth_pdata eth_pdata;
13	phys_addr_t packet_base;
14};
15
16#endif /* _ETHOC_H */
17