Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 230336
b: refs/heads/master
c: 4bd3a1f
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Dec 3, 2010
1 parent 137404e commit ed0901d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43fa95caab86fec0af7333bda407dd14f0c2127c
refs/heads/master: 4bd3a1f415affa4729856dca7e39c5093a9a954f
10 changes: 7 additions & 3 deletions trunk/sound/soc/codecs/alc5623.c
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,6 @@ static int alc5623_probe(struct snd_soc_codec *codec)
}

switch (alc5623->id) {
default:
case 0x21:
snd_soc_add_controls(codec, rt5621_vol_snd_controls,
ARRAY_SIZE(rt5621_vol_snd_controls));
Expand All @@ -938,6 +937,8 @@ static int alc5623_probe(struct snd_soc_codec *codec)
snd_soc_add_controls(codec, alc5623_vol_snd_controls,
ARRAY_SIZE(alc5623_vol_snd_controls));
break;
default:
return -EINVAL;
}

snd_soc_add_controls(codec, alc5623_snd_controls,
Expand All @@ -950,7 +951,6 @@ static int alc5623_probe(struct snd_soc_codec *codec)
snd_soc_dapm_add_routes(dapm, intercon, ARRAY_SIZE(intercon));

switch (alc5623->id) {
default:
case 0x21:
case 0x22:
snd_soc_dapm_new_controls(dapm, alc5623_dapm_amp_widgets,
Expand All @@ -962,6 +962,8 @@ static int alc5623_probe(struct snd_soc_codec *codec)
snd_soc_dapm_add_routes(dapm, intercon_spk,
ARRAY_SIZE(intercon_spk));
break;
default:
return -EINVAL;
}

return ret;
Expand Down Expand Up @@ -1039,10 +1041,12 @@ static int alc5623_i2c_probe(struct i2c_client *client,
case 0x22:
alc5623_dai.name = "alc5622-hifi";
break;
default:
case 0x23:
alc5623_dai.name = "alc5623-hifi";
break;
default:
kfree(alc5623);
return -EINVAL;
}

i2c_set_clientdata(client, alc5623);
Expand Down

0 comments on commit ed0901d

Please sign in to comment.