1 /* SPDX-License-Identifier: GPL-2.0 */
3 * mdio-boardinfo.h - board info interface internal to the mdio_bus
7 #ifndef __MDIO_BOARD_INFO_H
8 #define __MDIO_BOARD_INFO_H
10 #include <linux/phy.h>
11 #include <linux/mutex.h>
13 struct mdio_board_entry {
14 struct list_head list;
15 struct mdio_board_info board_info;
18 void mdiobus_setup_mdiodev_from_board_info(struct mii_bus *bus,
21 struct mdio_board_info *bi));
23 #endif /* __MDIO_BOARD_INFO_H */