diff options
author | Axel Lin <axel.lin@gmail.com> | 2010-12-03 04:25:57 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-12-03 07:25:24 -0500 |
commit | 4bd3a1f415affa4729856dca7e39c5093a9a954f (patch) | |
tree | def7331d15cdf125181bbd9d919f966be558b5dd /sound/soc/codecs/alc5623.c | |
parent | 43fa95caab86fec0af7333bda407dd14f0c2127c (diff) |
ASoC: Fix inconsistent meaning of default case while checking alc5623->id
In alc5623_i2c_probe(),
the default case for checking alc5623->id behaves the same as case 0x23.
However, In alc5623_probe() the default case for checking alc5623->id
becomes to be the same as case 0x21.
This makes the meaning of default case inconsistent.
Since we have checked codec id in alc5623_i2c_probe() by comparing
vid2 with id->driver_data, it is not possible to run into the default case now.
In case we may add more supported devices to alc5623_i2c_table in the future,
this patch changes the default case return -EINVAL to let people know that
they should not run into this case. They should also add a new case accordingly
for the new id.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/alc5623.c')
-rw-r--r-- | sound/soc/codecs/alc5623.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sound/soc/codecs/alc5623.c b/sound/soc/codecs/alc5623.c index 9783e7e2eb9..4f377c9e868 100644 --- a/sound/soc/codecs/alc5623.c +++ b/sound/soc/codecs/alc5623.c | |||
@@ -925,7 +925,6 @@ static int alc5623_probe(struct snd_soc_codec *codec) | |||
925 | } | 925 | } |
926 | 926 | ||
927 | switch (alc5623->id) { | 927 | switch (alc5623->id) { |
928 | default: | ||
929 | case 0x21: | 928 | case 0x21: |
930 | snd_soc_add_controls(codec, rt5621_vol_snd_controls, | 929 | snd_soc_add_controls(codec, rt5621_vol_snd_controls, |
931 | ARRAY_SIZE(rt5621_vol_snd_controls)); | 930 | ARRAY_SIZE(rt5621_vol_snd_controls)); |
@@ -938,6 +937,8 @@ static int alc5623_probe(struct snd_soc_codec *codec) | |||
938 | snd_soc_add_controls(codec, alc5623_vol_snd_controls, | 937 | snd_soc_add_controls(codec, alc5623_vol_snd_controls, |
939 | ARRAY_SIZE(alc5623_vol_snd_controls)); | 938 | ARRAY_SIZE(alc5623_vol_snd_controls)); |
940 | break; | 939 | break; |
940 | default: | ||
941 | return -EINVAL; | ||
941 | } | 942 | } |
942 | 943 | ||
943 | snd_soc_add_controls(codec, alc5623_snd_controls, | 944 | snd_soc_add_controls(codec, alc5623_snd_controls, |
@@ -950,7 +951,6 @@ static int alc5623_probe(struct snd_soc_codec *codec) | |||
950 | snd_soc_dapm_add_routes(dapm, intercon, ARRAY_SIZE(intercon)); | 951 | snd_soc_dapm_add_routes(dapm, intercon, ARRAY_SIZE(intercon)); |
951 | 952 | ||
952 | switch (alc5623->id) { | 953 | switch (alc5623->id) { |
953 | default: | ||
954 | case 0x21: | 954 | case 0x21: |
955 | case 0x22: | 955 | case 0x22: |
956 | snd_soc_dapm_new_controls(dapm, alc5623_dapm_amp_widgets, | 956 | snd_soc_dapm_new_controls(dapm, alc5623_dapm_amp_widgets, |
@@ -962,6 +962,8 @@ static int alc5623_probe(struct snd_soc_codec *codec) | |||
962 | snd_soc_dapm_add_routes(dapm, intercon_spk, | 962 | snd_soc_dapm_add_routes(dapm, intercon_spk, |
963 | ARRAY_SIZE(intercon_spk)); | 963 | ARRAY_SIZE(intercon_spk)); |
964 | break; | 964 | break; |
965 | default: | ||
966 | return -EINVAL; | ||
965 | } | 967 | } |
966 | 968 | ||
967 | return ret; | 969 | return ret; |
@@ -1039,10 +1041,12 @@ static int alc5623_i2c_probe(struct i2c_client *client, | |||
1039 | case 0x22: | 1041 | case 0x22: |
1040 | alc5623_dai.name = "alc5622-hifi"; | 1042 | alc5623_dai.name = "alc5622-hifi"; |
1041 | break; | 1043 | break; |
1042 | default: | ||
1043 | case 0x23: | 1044 | case 0x23: |
1044 | alc5623_dai.name = "alc5623-hifi"; | 1045 | alc5623_dai.name = "alc5623-hifi"; |
1045 | break; | 1046 | break; |
1047 | default: | ||
1048 | kfree(alc5623); | ||
1049 | return -EINVAL; | ||
1046 | } | 1050 | } |
1047 | 1051 | ||
1048 | i2c_set_clientdata(client, alc5623); | 1052 | i2c_set_clientdata(client, alc5623); |