radio_2056.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. Broadcom B43 wireless driver
  3. Copyright (c) 2010 Rafał Miłecki <zajec5@gmail.com>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; see the file COPYING. If not, write to
  14. the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
  15. Boston, MA 02110-1301, USA.
  16. */
  17. #ifndef B43_RADIO_2056_H_
  18. #define B43_RADIO_2056_H_
  19. #include <linux/types.h>
  20. #include "tables_nphy.h"
  21. struct b43_nphy_channeltab_entry_rev3 {
  22. /* The channel number */
  23. u8 channel;
  24. /* The channel frequency in MHz */
  25. u16 freq;
  26. /* Radio register values on channelswitch */
  27. /* TODO */
  28. /* PHY register values on channelswitch */
  29. struct b43_phy_n_sfo_cfg phy_regs;
  30. };
  31. #endif /* B43_RADIO_2056_H_ */