diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-01-30 20:16:37 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-02-02 21:02:42 +0100 |
commit | d29697dc3b92cb12a80632a5ade4fa26fd98225e (patch) | |
tree | 1e829f0bacff5d5f2130ed13731f91e60f683c6b /include/sound/soc-dapm.h | |
parent | Linux 3.19-rc1 (diff) | |
download | linux-d29697dc3b92cb12a80632a5ade4fa26fd98225e.tar.xz linux-d29697dc3b92cb12a80632a5ade4fa26fd98225e.zip |
ASoC: Add sysfs entries via static attribute groups
Instead of calling device_create_file() manually, assign the static
attribute group entries at the device registration. This simplifies
the error handling and avoids the possible races.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound/soc-dapm.h')
-rw-r--r-- | include/sound/soc-dapm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/soc-dapm.h b/include/sound/soc-dapm.h index 89823cfe6f04..e8e0220404d4 100644 --- a/include/sound/soc-dapm.h +++ b/include/sound/soc-dapm.h @@ -405,7 +405,7 @@ int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm, struct snd_soc_dapm_update *update); /* dapm sys fs - used by the core */ -int snd_soc_dapm_sys_add(struct device *dev); +extern struct attribute *soc_dapm_dev_attrs[]; void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm, struct dentry *parent); |