rt2x00_platform.h 537 B

123456789101112131415161718192021222324
  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. int clk_is_20mhz;
  19. };
  20. #endif /* _RT2X00_PLATFORM_H */