diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-08 18:22:56 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-12 18:33:31 -0400 |
commit | ed0617b5c0bcd7fd04053568aa0cc19a977a1f26 (patch) | |
tree | 8b5a0a83d4374fc9d6361cbb9f820300c446d7ca /drivers/base/base.h | |
parent | fa6fdb33b486a8afc5439c504da8d581e142c77d (diff) |
driver core: bus_type: add drv_groups
attribute groups are much more flexible than just a list of attributes,
due to their support for visibility of the attributes, and binary
attributes. Add drv_groups to struct bus_type which should be used
instead of drv_attrs.
drv_attrs will be removed from the structure soon.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/base/base.h')
-rw-r--r-- | drivers/base/base.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/base/base.h b/drivers/base/base.h index fccf954f82fd..2cbc6774f4cd 100644 --- a/drivers/base/base.h +++ b/drivers/base/base.h | |||
@@ -119,6 +119,11 @@ static inline int driver_match_device(struct device_driver *drv, | |||
119 | return drv->bus->match ? drv->bus->match(dev, drv) : 1; | 119 | return drv->bus->match ? drv->bus->match(dev, drv) : 1; |
120 | } | 120 | } |
121 | 121 | ||
122 | extern int driver_add_groups(struct device_driver *drv, | ||
123 | const struct attribute_group **groups); | ||
124 | extern void driver_remove_groups(struct device_driver *drv, | ||
125 | const struct attribute_group **groups); | ||
126 | |||
122 | extern int device_add_groups(struct device *dev, | 127 | extern int device_add_groups(struct device *dev, |
123 | const struct attribute_group **groups); | 128 | const struct attribute_group **groups); |
124 | extern void device_remove_groups(struct device *dev, | 129 | extern void device_remove_groups(struct device *dev, |