Searched refs:xitems (Results 1 – 1 of 1) sorted by relevance
| /OK3568_Linux_fs/kernel/include/sound/ |
| H A D | soc.h | 199 #define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xitems, xtexts) \ argument 201 .items = xitems, .texts = xtexts, \ 202 .mask = xitems ? roundup_pow_of_two(xitems) - 1 : 0} 203 #define SOC_ENUM_SINGLE(xreg, xshift, xitems, xtexts) \ argument 204 SOC_ENUM_DOUBLE(xreg, xshift, xshift, xitems, xtexts) 205 #define SOC_ENUM_SINGLE_EXT(xitems, xtexts) \ argument 206 { .items = xitems, .texts = xtexts } 207 #define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xitems, xtexts, xvalues) \ argument 209 .mask = xmask, .items = xitems, .texts = xtexts, .values = xvalues} 210 #define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xitems, xtexts, xvalues) \ argument [all …]
|