/* The maximum number of frequency band ranges */ #define MAX_NUM_OF_WBRF_RANGES 11
/* Record actions */ #define WBRF_RECORD_ADD 0x0 #define WBRF_RECORD_REMOVE 0x1
/** * struct freq_band_range - Wifi frequency band range definition * @start: start frequency point (in Hz) * @end: end frequency point (in Hz)
*/ struct freq_band_range {
u64 start;
u64 end;
};
/** * struct wbrf_ranges_in_out - wbrf ranges info * @num_of_ranges: total number of band ranges in this struct * @band_list: array of Wifi band ranges
*/ struct wbrf_ranges_in_out {
u64 num_of_ranges; struct freq_band_range band_list[MAX_NUM_OF_WBRF_RANGES];
};
/** * enum wbrf_notifier_actions - wbrf notifier actions index * @WBRF_CHANGED: there was some frequency band updates. The consumers * should retrieve the latest active frequency bands.
*/ enum wbrf_notifier_actions {
WBRF_CHANGED,
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.