Searched refs:xitems (Results 1 – 1 of 1) sorted by relevance
/linux-4.1.27/include/sound/ |
D | soc.h | 182 #define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xitems, xtexts) \ argument 184 .items = xitems, .texts = xtexts, \ 185 .mask = xitems ? roundup_pow_of_two(xitems) - 1 : 0} 186 #define SOC_ENUM_SINGLE(xreg, xshift, xitems, xtexts) \ argument 187 SOC_ENUM_DOUBLE(xreg, xshift, xshift, xitems, xtexts) 188 #define SOC_ENUM_SINGLE_EXT(xitems, xtexts) \ argument 189 { .items = xitems, .texts = xtexts } 190 #define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xitems, xtexts, xvalues) \ argument 192 .mask = xmask, .items = xitems, .texts = xtexts, .values = xvalues} 195 #define SOC_ENUM_SINGLE_VIRT(xitems, xtexts) \ argument [all …]
|