Commit 921c80c5 authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman

staging: most: core: add a match function for the bus

This patch adds the function most_match. It is needed to accociate
registered devices and drivers with the bus.
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 14c018a9
...@@ -756,11 +756,20 @@ static const struct attribute_group *aim_attr_groups[] = { ...@@ -756,11 +756,20 @@ static const struct attribute_group *aim_attr_groups[] = {
* ___C O R E___ * ___C O R E___
*/ */
int most_match(struct device *dev, struct device_driver *drv)
{
if (!strcmp(dev_name(dev), "most"))
return 0;
else
return 1;
}
/** /**
* Instantiation of the MOST bus * Instantiation of the MOST bus
*/ */
static struct bus_type most_bus = { static struct bus_type most_bus = {
.name = "most", .name = "most",
.match = most_match,
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment