diff options
author | Mark Brown <[email protected]> | 2018-03-09 12:46:27 +0000 |
---|---|---|
committer | Mark Brown <[email protected]> | 2018-03-09 12:46:27 +0000 |
commit | f7e73b26aea58003931e2f3925d9c01f6b6c4c4d (patch) | |
tree | 492daa54d8b024f378b555bcec8335be3d8b6b14 | |
parent | c15b2a1d185bcdab6556492b81b55ba9e658e201 (diff) |
ASoC: core: Fix typo roup->group
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/soc-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index e1f047de599e..4cd32f1bceb4 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -221,14 +221,14 @@ static const struct attribute_group soc_dapm_dev_group = { .is_visible = soc_dev_attr_is_visible, }; -static const struct attribute_group soc_dev_roup = { +static const struct attribute_group soc_dev_group = { .attrs = soc_dev_attrs, .is_visible = soc_dev_attr_is_visible, }; static const struct attribute_group *soc_dev_attr_groups[] = { &soc_dapm_dev_group, - &soc_dev_roup, + &soc_dev_group, NULL }; |