Lines Matching defs:value
22 * for USB devices this restriction does not apply, but the value of
43 * @QID_BEACON: Beacon queue (value unspecified, don't send it to device)
44 * @QID_ATIM: Atim queue (value unspecified, don't send it to device)
125 * @RXDONE_SIGNAL_PLCP: Signal field contains the plcp value.
126 * @RXDONE_SIGNAL_BITRATE: Signal field contains the bitrate value.
127 * @RXDONE_SIGNAL_MCS: Signal field contains the mcs value.
146 * from &rxdone_entry_desc to a signal value type.
286 * @ifs: IFS value.
287 * @txop: IFS value for 11n capable chips.
442 * @aifs: The aifs value for outgoing frames (field ignored in RX queue).
443 * @cw_min: The cw min value for outgoing frames (field ignored in RX queue).
444 * @cw_max: The cw max value for outgoing frames (field ignored in RX queue).
659 * @value: Value that should be written into the descriptor.
661 static inline void _rt2x00_desc_write(__le32 *desc, const u8 word, __le32 value)
663 desc[word] = value;
670 * @value: Value that should be written into the descriptor.
672 static inline void rt2x00_desc_write(__le32 *desc, const u8 word, u32 value)
674 _rt2x00_desc_write(desc, word, cpu_to_le32(value));