diff options
author | Adrian Knoth <adi@drcomp.erfurt.thur.de> | 2012-10-19 17:42:25 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-10-20 10:40:40 +0200 |
commit | d681deaa74748ce1d4b1a862438c955b70f46690 (patch) | |
tree | b804f712f47097a10d1e70f8651076f34138f770 /sound | |
parent | fba30fd342beda8e7908f214d9e7f8a62dcdc57d (diff) | |
download | op-kernel-dev-d681deaa74748ce1d4b1a862438c955b70f46690.zip op-kernel-dev-d681deaa74748ce1d4b1a862438c955b70f46690.tar.gz |
ALSA: hdspm - Fix reported autosync_sample_rate
Missing breaks lead to a fall-through, thus causing the wrong
autosync_sample_rate to be reported.
Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/rme9652/hdspm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index 81d83fa..976e3a6 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c @@ -2180,6 +2180,7 @@ static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol *kcontrol, hdspm_get_s1_sample_rate(hdspm, kcontrol->private_value-1); } + break; case AIO: switch (kcontrol->private_value) { @@ -2200,6 +2201,7 @@ static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol *kcontrol, hdspm_get_s1_sample_rate(hdspm, ucontrol->id.index-1); } + break; case AES32: @@ -2221,8 +2223,8 @@ static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol *kcontrol, hdspm_get_s1_sample_rate(hdspm, kcontrol->private_value-1); break; - } + break; default: break; } |