首页 > 其他 > 详细

really_probe()

时间:2021-05-16 01:15:42      阅读:26      评论:0      收藏:0      [点我收藏+]

really_probe()

platform_device_register

platform_device_add

device_add

bus_probe_device

device_initial_probe

__device_attach

__device_attach_driver

driver_probe_device

really_probe

static int really_probe(struct device *dev, struct device_driver *drv)

dev->driver = drv; //dev is device, dev->driver is device_driver, drv is device_driver

if (dev->bus->probe) {

ret = dev->bus->probe(dev);

if (ret)

goto probe_failed;

} else if (drv->probe) {

ret = drv->probe(dev);

if (ret)

goto probe_failed;

}

driver_bound(dev);

ret = 1;

pr_debug("bus: ‘%s‘: %s: bound device %s to driver %s\n",

drv->bus->name, __func__, dev_name(dev), drv->name);

goto done;

 

really_probe()

原文:https://www.cnblogs.com/aspirs/p/14772580.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!