diff options
-rw-r--r-- | sound/soc/codecs/tlv320aic3x.c | 2 | ||||
-rw-r--r-- | sound/soc/pxa/pxa-ssp.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/tlv320aic3x.c b/sound/soc/codecs/tlv320aic3x.c index d7349bc89ad3..e12fafbb1e09 100644 --- a/sound/soc/codecs/tlv320aic3x.c +++ b/sound/soc/codecs/tlv320aic3x.c | |||
@@ -169,7 +169,7 @@ static int snd_soc_dapm_put_volsw_aic3x(struct snd_kcontrol *kcontrol, | |||
169 | mask <<= shift; | 169 | mask <<= shift; |
170 | val <<= shift; | 170 | val <<= shift; |
171 | 171 | ||
172 | change = snd_soc_test_bits(codec, val, mask, reg); | 172 | change = snd_soc_test_bits(codec, reg, mask, val); |
173 | if (change) { | 173 | if (change) { |
174 | update.kcontrol = kcontrol; | 174 | update.kcontrol = kcontrol; |
175 | update.reg = reg; | 175 | update.reg = reg; |
diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c index 9b19ee70291f..199a8b377553 100644 --- a/sound/soc/pxa/pxa-ssp.c +++ b/sound/soc/pxa/pxa-ssp.c | |||
@@ -808,6 +808,7 @@ static const struct snd_soc_component_driver pxa_ssp_component = { | |||
808 | #ifdef CONFIG_OF | 808 | #ifdef CONFIG_OF |
809 | static const struct of_device_id pxa_ssp_of_ids[] = { | 809 | static const struct of_device_id pxa_ssp_of_ids[] = { |
810 | { .compatible = "mrvl,pxa-ssp-dai" }, | 810 | { .compatible = "mrvl,pxa-ssp-dai" }, |
811 | {} | ||
811 | }; | 812 | }; |
812 | #endif | 813 | #endif |
813 | 814 | ||