]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
sh: superhyway: use dev_groups and not dev_attrs for bus_type
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 6 Jun 2017 12:17:02 +0000 (14:17 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 9 Jun 2017 09:00:46 +0000 (11:00 +0200)
The dev_attrs field has long been "depreciated" and is finally being
removed, so move the driver to use the "correct" dev_groups field
instead for struct bus_type.

Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Rich Felker <dalias@libc.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: <linux-sh@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/sh/superhyway/superhyway-sysfs.c
drivers/sh/superhyway/superhyway.c
include/linux/superhyway.h

index 55434330867b27c1b90c331fb1189202439dcff8..774f31b564f8f87f03bf4ced3d2e0f0333252b7a 100644 (file)
@@ -19,7 +19,8 @@ static ssize_t name##_show(struct device *dev, struct device_attribute *attr, ch
 {                                                                      \
        struct superhyway_device *s = to_superhyway_device(dev);        \
        return sprintf(buf, fmt, s->field);                             \
-}
+}                                                                      \
+static DEVICE_ATTR_RO(name);
 
 /* VCR flags */
 superhyway_ro_attr(perr_flags, "0x%02x\n", vcr.perr_flags);
@@ -32,14 +33,22 @@ superhyway_ro_attr(top_mb, "0x%02x\n", vcr.top_mb);
 /* Misc */
 superhyway_ro_attr(resource, "0x%08lx\n", resource[0].start);
 
-struct device_attribute superhyway_dev_attrs[] = {
-       __ATTR_RO(perr_flags),
-       __ATTR_RO(merr_flags),
-       __ATTR_RO(mod_vers),
-       __ATTR_RO(mod_id),
-       __ATTR_RO(bot_mb),
-       __ATTR_RO(top_mb),
-       __ATTR_RO(resource),
-       __ATTR_NULL,
+static struct attribute *superhyway_dev_attrs[] = {
+       &dev_attr_perr_flags.attr,
+       &dev_attr_merr_flags.attr,
+       &dev_attr_mod_vers.attr,
+       &dev_attr_mod_id.attr,
+       &dev_attr_bot_mb.attr,
+       &dev_attr_top_mb.attr,
+       &dev_attr_resource.attr,
+       NULL,
 };
 
+static const struct attribute_group superhyway_dev_group = {
+       .attrs = superhyway_dev_attrs,
+};
+
+const struct attribute_group *superhyway_dev_groups[] = {
+       &superhyway_dev_group,
+       NULL,
+};
index bb1fb771213401a8cbf67b98011f464409ecb699..348836b90605f486521b2dc7f50b2db821a540f3 100644 (file)
@@ -209,7 +209,7 @@ struct bus_type superhyway_bus_type = {
        .name           = "superhyway",
        .match          = superhyway_bus_match,
 #ifdef CONFIG_SYSFS
-       .dev_attrs      = superhyway_dev_attrs,
+       .dev_groups     = superhyway_dev_groups,
 #endif
        .probe          = superhyway_device_probe,
        .remove         = superhyway_device_remove,
index 17ea468fa3621a9246a2e5717a99c94ca0b01ddc..8d3376775813d3e6a30914ff7742ea0f68f80ad5 100644 (file)
@@ -101,7 +101,7 @@ int superhyway_add_device(unsigned long base, struct superhyway_device *, struct
 int superhyway_add_devices(struct superhyway_bus *bus, struct superhyway_device **devices, int nr_devices);
 
 /* drivers/sh/superhyway/superhyway-sysfs.c */
-extern struct device_attribute superhyway_dev_attrs[];
+extern const struct attribute_group *superhyway_dev_groups[];
 
 #endif /* __LINUX_SUPERHYWAY_H */