最終更新:2016-03-29 (火) 15:05:10 (2952d)  

driver_match_device
Top / driver_match_device

static inline int driver_match_device(struct device_driver *drv,
                                      struct device *dev)
{
        return drv->bus->match ? drv->bus->match(dev, drv) : 1;
}

関連