aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sound/soc.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index 3e9cae001eab..82bd773f8ab1 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -192,6 +192,14 @@
192 ((unsigned long)&(struct soc_bytes) \ 192 ((unsigned long)&(struct soc_bytes) \
193 {.base = xbase, .num_regs = xregs }) } 193 {.base = xbase, .num_regs = xregs }) }
194 194
195#define SND_SOC_BYTES_MASK(xname, xbase, xregs, xmask) \
196{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
197 .info = snd_soc_bytes_info, .get = snd_soc_bytes_get, \
198 .put = snd_soc_bytes_put, .private_value = \
199 ((unsigned long)&(struct soc_bytes) \
200 {.base = xbase, .num_regs = xregs, \
201 .mask = xmask }) }
202
195/* 203/*
196 * Simplified versions of above macros, declaring a struct and calculating 204 * Simplified versions of above macros, declaring a struct and calculating
197 * ARRAY_SIZE internally 205 * ARRAY_SIZE internally
@@ -904,6 +912,7 @@ struct soc_mixer_control {
904struct soc_bytes { 912struct soc_bytes {
905 int base; 913 int base;
906 int num_regs; 914 int num_regs;
915 u32 mask;
907}; 916};
908 917
909/* enumerated kcontrol */ 918/* enumerated kcontrol */