]> git.kernelconcepts.de Git - mv-sheeva.git/commit
ASoC: Fix inconsistent meaning of default case while checking alc5623->id
authorAxel Lin <axel.lin@gmail.com>
Fri, 3 Dec 2010 09:25:57 +0000 (17:25 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Fri, 3 Dec 2010 12:25:24 +0000 (12:25 +0000)
commit4bd3a1f415affa4729856dca7e39c5093a9a954f
treedef7331d15cdf125181bbd9d919f966be558b5dd
parent43fa95caab86fec0af7333bda407dd14f0c2127c
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>
sound/soc/codecs/alc5623.c