hw_features_common.h 720 B

1234567891011121314151617181920212223
  1. /*
  2. * Common hostapd/wpa_supplicant HW features
  3. * Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2015, Qualcomm Atheros, Inc.
  5. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #ifndef HW_FEATURES_COMMON_H
  10. #define HW_FEATURES_COMMON_H
  11. #include "drivers/driver.h"
  12. struct hostapd_channel_data * hw_get_channel_chan(struct hostapd_hw_modes *mode,
  13. int chan, int *freq);
  14. struct hostapd_channel_data * hw_get_channel_freq(struct hostapd_hw_modes *mode,
  15. int freq, int *chan);
  16. int hw_get_freq(struct hostapd_hw_modes *mode, int chan);
  17. int hw_get_chan(struct hostapd_hw_modes *mode, int freq);
  18. #endif /* HW_FEATURES_COMMON_H */