4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 09:03:31 +08:00

修复phy中device->ops的错误

This commit is contained in:
mazhiyuan 2021-10-14 10:28:19 +08:00
parent 33263d7e4e
commit 26ab85d50c

View File

@ -60,7 +60,7 @@ rt_err_t rt_hw_phy_register(struct rt_phy_device *phy, const char *name)
device->tx_complete = RT_NULL;
#ifdef RT_USING_DEVICE_OPS
device->ops = phy_ops;
device->ops = &phy_ops;
#else
device->init = NULL;
device->open = NULL;