1 
2 /*
3  * Copyright (c) 2006-2023, RT-Thread Development Team
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  *
7  * Change Logs:
8  * Date           Author       Notes
9  * 2020-09-29     WangQiang    the first version
10  *
11  */
12 
13 #ifndef DRV_MDIO_H__
14 #define DRV_MDIO_H__
15 
16 #include <rtdevice.h>
17 
18 #include "fsl_enet.h"
19 
20 
21 rt_mdio_t *rt_hw_mdio_register(void *hw_obj, char *name);
22 
23 rt_mdio_t *rt_hw_mdio_get(void);
24 
25 #endif /*DRV_MDIO_H__*/
26