Linux 4.14.13
[linux-stable.git] / drivers / net / phy / mdio-boardinfo.h
blob773bb51399be9a934417359e6ccda42d6cfeebce
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * mdio-boardinfo.h - board info interface internal to the mdio_bus
4 * component
5 */
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,
19 int (*cb)
20 (struct mii_bus *bus,
21 struct mdio_board_info *bi));
23 #endif /* __MDIO_BOARD_INFO_H */