瀏覽代碼

ASoC: Add regmap as a control type

Allow drivers to set up their own regmap API structures. This is mainly
useful with MFDs where the core driver will have set up regmap at the
minute, though it may make sense to push the existing regmap setup out
of the core into the drivers.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Mark Brown 14 年之前
父節點
當前提交
0671da189c
共有 2 個文件被更改,包括 5 次插入0 次删除
  1. 1 0
      include/sound/soc.h
  2. 4 0
      sound/soc/soc-io.c

+ 1 - 0
include/sound/soc.h

@@ -261,6 +261,7 @@ extern struct snd_ac97_bus_ops soc_ac97_ops;
 enum snd_soc_control_type {
 	SND_SOC_I2C = 1,
 	SND_SOC_SPI,
+	SND_SOC_REGMAP,
 };
 
 enum snd_soc_compress_type {

+ 4 - 0
sound/soc/soc-io.c

@@ -132,6 +132,10 @@ int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
 						      &config);
 		break;
 
+	case SND_SOC_REGMAP:
+		/* Device has made its own regmap arrangements */
+		break;
+
 	default:
 		return -EINVAL;
 	}