max2820.h 842 B

1234567891011121314151617181920212223242526272829
  1. #ifndef RTL8180_MAX2820_H
  2. #define RTL8180_MAX2820_H
  3. /*
  4. * Radio tuning for Maxim max2820 on RTL8180
  5. *
  6. * Copyright 2007 Andrea Merello <andrea.merello@gmail.com>
  7. *
  8. * Code from the BSD driver and the rtl8181 project have been
  9. * very useful to understand certain things
  10. *
  11. * I want to thanks the Authors of such projects and the Ndiswrapper
  12. * project Authors.
  13. *
  14. * A special Big Thanks also is for all people who donated me cards,
  15. * making possible the creation of the original rtl8180 driver
  16. * from which this code is derived!
  17. *
  18. * This program is free software; you can redistribute it and/or modify
  19. * it under the terms of the GNU General Public License version 2 as
  20. * published by the Free Software Foundation.
  21. */
  22. #define MAXIM_ANTENNA 0xb3
  23. extern const struct rtl818x_rf_ops max2820_rf_ops;
  24. #endif /* RTL8180_MAX2820_H */