> -#define RX_FLAG_MMIC_ERROR 0x1 > -#define RX_FLAG_DECRYPTED 0x2 > - > /* Receive status. The low-level driver should provide this information > * (the subset supported by hardware) to the 802.11 code with each received > * frame. */ > @@ -232,6 +229,9 @@ struct ieee80211_rx_status { > int noise; > int antenna; > int rate; > +#define RX_FLAG_MMIC_ERROR (1<<0) > +#define RX_FLAG_DECRYPTED (1<<1) > +#define RX_FLAG_RADIOTAP (1<<2) > int flag; > }; Doesn't matter right now, but for the future: kernel-doc hates having constants inlined into a struct like that. johannes
Attachment:
signature.asc
Description: This is a digitally signed message part