1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2020-08-31     luhuadong    first version
9  */
10 
11 #include <board.h>
12 
phy_reset(void)13 void phy_reset(void)
14 {
15     /*
16      * The PHY reset pin of DISCO-F769NI is connected to the MCU reset pin,
17      * so no additional reset is required.
18      */
19 
20     return ;
21 }
22