From 767c9ff98e05dbbe70330cfb746abcac5ff55a3b Mon Sep 17 00:00:00 2001 From: "rick.chan" Date: Thu, 12 May 2022 17:13:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20really=5Fprobe=20=E6=B3=A8?= =?UTF-8?q?=E9=87=8A.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: rick.chan --- .../Linux/Kernel/Modules/Net/PHY/Phy_驱动的_Match_流程.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Software/Development/System/Linux/Kernel/Modules/Net/PHY/Phy_驱动的_Match_流程.md b/Software/Development/System/Linux/Kernel/Modules/Net/PHY/Phy_驱动的_Match_流程.md index 19b7d02..872d8cd 100644 --- a/Software/Development/System/Linux/Kernel/Modules/Net/PHY/Phy_驱动的_Match_流程.md +++ b/Software/Development/System/Linux/Kernel/Modules/Net/PHY/Phy_驱动的_Match_流程.md @@ -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); } ```