rtw_wifi_regd.h 590 B

12345678910111213141516171819202122232425
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2009-2010 Realtek Corporation.
  4. *
  5. *****************************************************************************/
  6. #ifndef __RTW_WIFI_REGD_H__
  7. #define __RTW_WIFI_REGD_H__
  8. struct country_code_to_enum_rd {
  9. u16 countrycode;
  10. const char *iso_name;
  11. };
  12. enum country_code_type_t {
  13. COUNTRY_CODE_USER = 0,
  14. /*add new channel plan above this line */
  15. COUNTRY_CODE_MAX
  16. };
  17. int rtw_regd_init(_adapter *padapter);
  18. void rtw_reg_notify_by_driver(_adapter *adapter);
  19. #endif /* __RTW_WIFI_REGD_H__ */