修正 really_probe 注释.

Signed-off-by: rick.chan <chen.yang@yuzhen-iot.com>
This commit is contained in:
rick.chan 2022-05-12 17:13:23 +08:00
parent 967d5ea0f1
commit 767c9ff98e
1 changed files with 2 additions and 1 deletions

View File

@ -171,7 +171,8 @@ int driver_probe_device(struct device_driver *drv, struct device *dev)
// 14.
static int really_probe(struct device *dev, struct device_driver *drv)
{
// 调用实际驱动的 probe() 方法,这里就是对应 phy id 的驱动的 probe() 方法.
// 调用实际驱动的 probe() 方法,即标准 phy 框架的 probe() 方法.
// 而实际 Phy 驱动通过 module_phy_driver() 讲自己添加进标准 phy 框架。
ret = drv->probe(dev);
}
```