1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /* Microchip Sparx5 Switch driver
3  *
4  * Copyright (c) 2022 Microchip Technology Inc. and its subsidiaries.
5  */
6 
7 #ifndef __SPARX5_QOS_H__
8 #define __SPARX5_QOS_H__
9 
10 #include <linux/netdevice.h>
11 
12 /* Multi-Queue Priority */
13 int sparx5_tc_mqprio_add(struct net_device *ndev, u8 num_tc);
14 int sparx5_tc_mqprio_del(struct net_device *ndev);
15 
16 #endif	/* __SPARX5_QOS_H__ */
17