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 * 2018-11-21 zylx add port file 9 */ 10 11 #include <rtthread.h> 12 13 //#define DRV_DEBUG 14 #define LOG_TAG "drv.phy" 15 #include <drv_log.h> 16 17 /* phy reset */ phy_reset(void)18void phy_reset(void) 19 { 20 21 } 22 23