rt2x00_platform.h 518 B

1234567891011121314151617181920212223
  1. /*
  2. * Platform data definition for the rt2x00 driver
  3. *
  4. * Copyright (C) 2011 Gabor Juhos <[email protected]>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation.
  9. *
  10. */
  11. #ifndef _RT2X00_PLATFORM_H
  12. #define _RT2X00_PLATFORM_H
  13. struct rt2x00_platform_data {
  14. char *eeprom_file_name;
  15. const u8 *mac_address;
  16. int disable_2ghz;
  17. int disable_5ghz;
  18. };
  19. #endif /* _RT2X00_PLATFORM_H */