xref: /linux/drivers/net/dsa/mxl862xx/mxl862xx.h (revision c17ee635fd3a482b2ad2bf5e269755c2eae5f25e)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #ifndef __MXL862XX_H
4 #define __MXL862XX_H
5 
6 #include <linux/mdio.h>
7 #include <net/dsa.h>
8 
9 #define MXL862XX_MAX_PORTS		17
10 
11 struct mxl862xx_priv {
12 	struct dsa_switch *ds;
13 	struct mdio_device *mdiodev;
14 };
15 
16 #endif /* __MXL862XX_H */
17