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