summaryrefslogtreecommitdiffstats
path: root/drivers/zorro/zorro.h
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2017-02-14 12:24:09 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-17 15:10:49 +0900
commit87e715deb8e24bf1a6a9a1babaf465c28c93889c (patch)
tree301f21d1a648dc9a84c1eb65df4c2e77fc79cb4a /drivers/zorro/zorro.h
parenta553910fbaafbd7c18823c0f1e5dcc2d12c9fd2a (diff)
downloadlinux-0-day-87e715deb8e24bf1a6a9a1babaf465c28c93889c.tar.gz
linux-0-day-87e715deb8e24bf1a6a9a1babaf465c28c93889c.tar.xz
zorro: stop creating attributes by hand
Instead of creating attributes one by one, define attribute_group array and attach it to bus->dev_groups, so that all needed attributes are created automatically when a new device is registered on the bus. Also switch to using standard DEVICE_ATTR_RO() macros. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/zorro/zorro.h')
-rw-r--r--drivers/zorro/zorro.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/zorro/zorro.h b/drivers/zorro/zorro.h
index 34119fb4e5601..4f805c01cfbc0 100644
--- a/drivers/zorro/zorro.h
+++ b/drivers/zorro/zorro.h
@@ -5,5 +5,4 @@ extern void zorro_name_device(struct zorro_dev *z);
static inline void zorro_name_device(struct zorro_dev *dev) { }
#endif
-extern int zorro_create_sysfs_dev_files(struct zorro_dev *z);
-
+extern const struct attribute_group *zorro_device_attribute_groups[];