diff options
author | Quentin Lambert <lambert.quentin@gmail.com> | 2015-06-12 10:38:41 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-06-12 20:46:17 +0200 |
commit | a038b97951d399685e18a6dc53dee62b42134a0a (patch) | |
tree | 0e9b9357e94b5dd9efd2fc389cca57bd88a85291 /sound/aoa/soundbus/sysfs.c | |
parent | Merge branch 'for-linus' into for-next (diff) | |
download | linux-a038b97951d399685e18a6dc53dee62b42134a0a.tar.xz linux-a038b97951d399685e18a6dc53dee62b42134a0a.zip |
ALSA: aoa: convert bus code to use dev_groups
The dev_attrs field of struct bus_type is going away, use dev_groups instead.
This converts the soundbus code to use the correct field.
These modifications were made using Coccinelle.
Signed-off-by: Quentin Lambert <lambert.quentin@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/aoa/soundbus/sysfs.c')
-rw-r--r-- | sound/aoa/soundbus/sysfs.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sound/aoa/soundbus/sysfs.c b/sound/aoa/soundbus/sysfs.c index e0980b5c2cd8..5b2d51d99768 100644 --- a/sound/aoa/soundbus/sysfs.c +++ b/sound/aoa/soundbus/sysfs.c @@ -30,13 +30,16 @@ static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, return length; } +static DEVICE_ATTR_RO(modalias); soundbus_config_of_attr (name, "%s\n"); +static DEVICE_ATTR_RO(name); soundbus_config_of_attr (type, "%s\n"); +static DEVICE_ATTR_RO(type); -struct device_attribute soundbus_dev_attrs[] = { - __ATTR_RO(name), - __ATTR_RO(type), - __ATTR_RO(modalias), - __ATTR_NULL +struct attribute *soundbus_dev_attrs[] = { + &dev_attr_name.attr, + &dev_attr_type.attr, + &dev_attr_modalias.attr, + NULL, }; |