Skip to content

Commit

Permalink
Merge remote-tracking branch 'asoc/fix/88pm860x' into asoc-linus
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Brown committed Sep 27, 2013
2 parents 4a10c2a + d967967 commit 448c3f6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sound/soc/codecs/88pm860x-codec.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,9 @@ static int snd_soc_put_volsw_2r_st(struct snd_kcontrol *kcontrol,
val = ucontrol->value.integer.value[0];
val2 = ucontrol->value.integer.value[1];

if (val >= ARRAY_SIZE(st_table) || val2 >= ARRAY_SIZE(st_table))
return -EINVAL;

err = snd_soc_update_bits(codec, reg, 0x3f, st_table[val].m);
if (err < 0)
return err;
Expand Down

0 comments on commit 448c3f6

Please sign in to comment.