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