aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-08 18:22:55 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-12 18:33:31 -0400
commitfa6fdb33b486a8afc5439c504da8d581e142c77d (patch)
tree2195533d76d3a35d78c9e685de128ca80248bea1 /drivers
parente70b0915124942204dec8064bb25756e8723b81a (diff)
driver core: bus_type: add dev_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 dev_groups to struct bus_type which should be used instead of dev_attrs. dev_attrs will be removed from the structure soon. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/base/base.h5
-rw-r--r--drivers/base/bus.c6
-rw-r--r--drivers/base/core.c7
3 files changed, 14 insertions, 4 deletions
diff --git a/drivers/base/base.h b/drivers/base/base.h
index b8bdfe61daa6..fccf954f82fd 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
122extern int device_add_groups(struct device *dev,
123 const struct attribute_group **groups);
124extern void device_remove_groups(struct device *dev,
125 const struct attribute_group **groups);
126
122extern char *make_class_name(const char *name, struct kobject *kobj); 127extern char *make_class_name(const char *name, struct kobject *kobj);
123 128
124extern int devres_release_all(struct device *dev); 129extern int devres_release_all(struct device *dev);
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index d414331b480e..7b2dc5ba7d79 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -499,6 +499,9 @@ int bus_add_device(struct device *dev)
499 error = device_add_attrs(bus, dev); 499 error = device_add_attrs(bus, dev);
500 if (error) 500 if (error)
501 goto out_put; 501 goto out_put;
502 error = device_add_groups(dev, bus->dev_groups);
503 if (error)
504 goto out_groups;
502 error = sysfs_create_link(&bus->p->devices_kset->kobj, 505 error = sysfs_create_link(&bus->p->devices_kset->kobj,
503 &dev->kobj, dev_name(dev)); 506 &dev->kobj, dev_name(dev));
504 if (error) 507 if (error)
@@ -513,6 +516,8 @@ int bus_add_device(struct device *dev)
513 516
514out_subsys: 517out_subsys:
515 sysfs_remove_link(&bus->p->devices_kset->kobj, dev_name(dev)); 518 sysfs_remove_link(&bus->p->devices_kset->kobj, dev_name(dev));
519out_groups:
520 device_remove_groups(dev, bus->dev_groups);
516out_id: 521out_id:
517 device_remove_attrs(bus, dev); 522 device_remove_attrs(bus, dev);
518out_put: 523out_put:
@@ -575,6 +580,7 @@ void bus_remove_device(struct device *dev)
575 sysfs_remove_link(&dev->bus->p->devices_kset->kobj, 580 sysfs_remove_link(&dev->bus->p->devices_kset->kobj,
576 dev_name(dev)); 581 dev_name(dev));
577 device_remove_attrs(dev->bus, dev); 582 device_remove_attrs(dev->bus, dev);
583 device_remove_groups(dev, dev->bus->dev_groups);
578 if (klist_node_attached(&dev->p->knode_bus)) 584 if (klist_node_attached(&dev->p->knode_bus))
579 klist_del(&dev->p->knode_bus); 585 klist_del(&dev->p->knode_bus);
580 586
diff --git a/drivers/base/core.c b/drivers/base/core.c
index e51c78782933..09a99d609644 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -491,8 +491,7 @@ static void device_remove_bin_attributes(struct device *dev,
491 device_remove_bin_file(dev, &attrs[i]); 491 device_remove_bin_file(dev, &attrs[i]);
492} 492}
493 493
494static int device_add_groups(struct device *dev, 494int device_add_groups(struct device *dev, const struct attribute_group **groups)
495 const struct attribute_group **groups)
496{ 495{
497 int error = 0; 496 int error = 0;
498 int i; 497 int i;
@@ -511,8 +510,8 @@ static int device_add_groups(struct device *dev,
511 return error; 510 return error;
512} 511}
513 512
514static void device_remove_groups(struct device *dev, 513void device_remove_groups(struct device *dev,
515 const struct attribute_group **groups) 514 const struct attribute_group **groups)
516{ 515{
517 int i; 516 int i;
518 517