1/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
2/* Copyright (c) 2019-2020 Marvell International Ltd. All rights reserved. */
3
4#ifndef _PRESTERA_RXTX_H_
5#define _PRESTERA_RXTX_H_
6
7#include <linux/netdevice.h>
8
9struct prestera_switch;
10struct prestera_port;
11
12int prestera_rxtx_switch_init(struct prestera_switch *sw);
13void prestera_rxtx_switch_fini(struct prestera_switch *sw);
14
15int prestera_rxtx_port_init(struct prestera_port *port);
16
17netdev_tx_t prestera_rxtx_xmit(struct prestera_port *port, struct sk_buff *skb);
18
19#endif /* _PRESTERA_RXTX_H_ */
20