aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2007-07-29 20:28:56 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-10-12 17:50:59 -0400
commit8380770c842faef3001e44662953d64ad9a93663 (patch)
tree631ce7dae6fe0edb36942e6165f679638f6beb68 /drivers/base
parent3b6662f192fc521b9657f63e68d20ec99979dae6 (diff)
Driver core: make sysfs uevent-attributes static
Attributes do not have an owner(module) anymore, so there is no need to carry the attributes in every single bus instance. Signed-off-by: Kay Sievers <kay.sievers@vrfy.org> Acked-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base')
-rw-r--r--drivers/base/bus.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index 61c67526a656..ff850d1b0d92 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -568,32 +568,29 @@ static void remove_bind_files(struct device_driver *drv)
568 driver_remove_file(drv, &driver_attr_unbind); 568 driver_remove_file(drv, &driver_attr_unbind);
569} 569}
570 570
571static BUS_ATTR(drivers_probe, S_IWUSR, NULL, store_drivers_probe);
572static BUS_ATTR(drivers_autoprobe, S_IWUSR | S_IRUGO,
573 show_drivers_autoprobe, store_drivers_autoprobe);
574
571static int add_probe_files(struct bus_type *bus) 575static int add_probe_files(struct bus_type *bus)
572{ 576{
573 int retval; 577 int retval;
574 578
575 bus->drivers_probe_attr.attr.name = "drivers_probe"; 579 retval = bus_create_file(bus, &bus_attr_drivers_probe);
576 bus->drivers_probe_attr.attr.mode = S_IWUSR;
577 bus->drivers_probe_attr.store = store_drivers_probe;
578 retval = bus_create_file(bus, &bus->drivers_probe_attr);
579 if (retval) 580 if (retval)
580 goto out; 581 goto out;
581 582
582 bus->drivers_autoprobe_attr.attr.name = "drivers_autoprobe"; 583 retval = bus_create_file(bus, &bus_attr_drivers_autoprobe);
583 bus->drivers_autoprobe_attr.attr.mode = S_IWUSR | S_IRUGO;
584 bus->drivers_autoprobe_attr.show = show_drivers_autoprobe;
585 bus->drivers_autoprobe_attr.store = store_drivers_autoprobe;
586 retval = bus_create_file(bus, &bus->drivers_autoprobe_attr);
587 if (retval) 584 if (retval)
588 bus_remove_file(bus, &bus->drivers_probe_attr); 585 bus_remove_file(bus, &bus_attr_drivers_probe);
589out: 586out:
590 return retval; 587 return retval;
591} 588}
592 589
593static void remove_probe_files(struct bus_type *bus) 590static void remove_probe_files(struct bus_type *bus)
594{ 591{
595 bus_remove_file(bus, &bus->drivers_autoprobe_attr); 592 bus_remove_file(bus, &bus_attr_drivers_autoprobe);
596 bus_remove_file(bus, &bus->drivers_probe_attr); 593 bus_remove_file(bus, &bus_attr_drivers_probe);
597} 594}
598#else 595#else
599static inline int add_bind_files(struct device_driver *drv) { return 0; } 596static inline int add_bind_files(struct device_driver *drv) { return 0; }