diff options
Diffstat (limited to 'sound/ppc/tumbler.c')
-rw-r--r-- | sound/ppc/tumbler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/ppc/tumbler.c b/sound/ppc/tumbler.c index bacff3d1c189..d4d22e161d11 100644 --- a/sound/ppc/tumbler.c +++ b/sound/ppc/tumbler.c | |||
@@ -809,7 +809,7 @@ static int snapper_get_capture_source(struct snd_kcontrol *kcontrol, | |||
809 | struct pmac_tumbler *mix = chip->mixer_data; | 809 | struct pmac_tumbler *mix = chip->mixer_data; |
810 | 810 | ||
811 | snd_assert(mix, return -ENODEV); | 811 | snd_assert(mix, return -ENODEV); |
812 | ucontrol->value.enumerated.value[0] = mix->capture_source; | 812 | ucontrol->value.enumerated.item[0] = mix->capture_source; |
813 | return 0; | 813 | return 0; |
814 | } | 814 | } |
815 | 815 | ||
@@ -821,7 +821,7 @@ static int snapper_put_capture_source(struct snd_kcontrol *kcontrol, | |||
821 | int change; | 821 | int change; |
822 | 822 | ||
823 | snd_assert(mix, return -ENODEV); | 823 | snd_assert(mix, return -ENODEV); |
824 | change = ucontrol->value.enuemerated.item[0] != mix->capture_source; | 824 | change = ucontrol->value.enumerated.item[0] != mix->capture_source; |
825 | if (change) { | 825 | if (change) { |
826 | mix->capture_source = !!ucontrol->value.enumerated.item[0]; | 826 | mix->capture_source = !!ucontrol->value.enumerated.item[0]; |
827 | snapper_set_capture_source(mix); | 827 | snapper_set_capture_source(mix); |