Lines Matching refs:type

155 	enum iwl_table_type type;
165 #define is_type_legacy(type) (((type) == LQ_LEGACY_G) || \
166 ((type) == LQ_LEGACY_A))
167 #define is_type_ht_siso(type) ((type) == LQ_HT_SISO)
168 #define is_type_ht_mimo2(type) ((type) == LQ_HT_MIMO2)
169 #define is_type_vht_siso(type) ((type) == LQ_VHT_SISO)
170 #define is_type_vht_mimo2(type) ((type) == LQ_VHT_MIMO2)
171 #define is_type_he_siso(type) ((type) == LQ_HE_SISO)
172 #define is_type_he_mimo2(type) ((type) == LQ_HE_MIMO2)
173 #define is_type_siso(type) (is_type_ht_siso(type) || is_type_vht_siso(type) || \
174 is_type_he_siso(type))
175 #define is_type_mimo2(type) (is_type_ht_mimo2(type) || \
176 is_type_vht_mimo2(type) || is_type_he_mimo2(type))
177 #define is_type_mimo(type) (is_type_mimo2(type))
178 #define is_type_ht(type) (is_type_ht_siso(type) || is_type_ht_mimo2(type))
179 #define is_type_vht(type) (is_type_vht_siso(type) || is_type_vht_mimo2(type))
180 #define is_type_he(type) (is_type_he_siso(type) || is_type_he_mimo2(type))
181 #define is_type_a_band(type) ((type) == LQ_LEGACY_A)
182 #define is_type_g_band(type) ((type) == LQ_LEGACY_G)
184 #define is_legacy(rate) is_type_legacy((rate)->type)
185 #define is_ht_siso(rate) is_type_ht_siso((rate)->type)
186 #define is_ht_mimo2(rate) is_type_ht_mimo2((rate)->type)
187 #define is_vht_siso(rate) is_type_vht_siso((rate)->type)
188 #define is_vht_mimo2(rate) is_type_vht_mimo2((rate)->type)
189 #define is_siso(rate) is_type_siso((rate)->type)
190 #define is_mimo2(rate) is_type_mimo2((rate)->type)
191 #define is_mimo(rate) is_type_mimo((rate)->type)
192 #define is_ht(rate) is_type_ht((rate)->type)
193 #define is_vht(rate) is_type_vht((rate)->type)
194 #define is_he(rate) is_type_he((rate)->type)
195 #define is_a_band(rate) is_type_a_band((rate)->type)
196 #define is_g_band(rate) is_type_g_band((rate)->type)