ASoC: Check for NULL register bank in snd_soc_get_cache_val()

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@ti.com>
This commit is contained in:
Mark Brown 2011-06-06 11:26:15 +01:00
Родитель 6ac340623c
Коммит fd137e2bba
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -466,6 +466,9 @@ static bool snd_soc_set_cache_val(void *base, unsigned int idx,
static unsigned int snd_soc_get_cache_val(const void *base, unsigned int idx, static unsigned int snd_soc_get_cache_val(const void *base, unsigned int idx,
unsigned int word_size) unsigned int word_size)
{ {
if (!base)
return -1;
switch (word_size) { switch (word_size) {
case 1: { case 1: {
const u8 *cache = base; const u8 *cache = base;