GNU Linux-libre 5.10.215-gnu1
[releases.git] / drivers / net / ethernet / marvell / prestera / prestera_rxtx.h
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
9 struct prestera_switch;
10 struct prestera_port;
11
12 int prestera_rxtx_switch_init(struct prestera_switch *sw);
13 void prestera_rxtx_switch_fini(struct prestera_switch *sw);
14
15 int prestera_rxtx_port_init(struct prestera_port *port);
16
17 netdev_tx_t prestera_rxtx_xmit(struct prestera_port *port, struct sk_buff *skb);
18
19 #endif /* _PRESTERA_RXTX_H_ */