1234567891011121314151617181920212223 |
- #ifndef HW_FEATURES_COMMON_H
- #define HW_FEATURES_COMMON_H
- #include "drivers/driver.h"
- struct hostapd_channel_data * hw_get_channel_chan(struct hostapd_hw_modes *mode,
- int chan, int *freq);
- struct hostapd_channel_data * hw_get_channel_freq(struct hostapd_hw_modes *mode,
- int freq, int *chan);
- int hw_get_freq(struct hostapd_hw_modes *mode, int chan);
- int hw_get_chan(struct hostapd_hw_modes *mode, int freq);
- #endif
|