phy_lcn.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. Broadcom B43 wireless driver
  3. IEEE 802.11n LCN-PHY support
  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. #include <linux/slab.h>
  18. #include "b43.h"
  19. #include "phy_lcn.h"
  20. #include "tables_phy_lcn.h"
  21. #include "main.h"
  22. /**************************************************
  23. * PHY ops struct.
  24. **************************************************/
  25. const struct b43_phy_operations b43_phyops_lcn = {
  26. /*
  27. .allocate = b43_phy_lcn_op_allocate,
  28. .free = b43_phy_lcn_op_free,
  29. .prepare_structs = b43_phy_lcn_op_prepare_structs,
  30. .init = b43_phy_lcn_op_init,
  31. .phy_read = b43_phy_lcn_op_read,
  32. .phy_write = b43_phy_lcn_op_write,
  33. .phy_maskset = b43_phy_lcn_op_maskset,
  34. .radio_read = b43_phy_lcn_op_radio_read,
  35. .radio_write = b43_phy_lcn_op_radio_write,
  36. .software_rfkill = b43_phy_lcn_op_software_rfkill,
  37. .switch_analog = b43_phy_lcn_op_switch_analog,
  38. .switch_channel = b43_phy_lcn_op_switch_channel,
  39. .get_default_chan = b43_phy_lcn_op_get_default_chan,
  40. .recalc_txpower = b43_phy_lcn_op_recalc_txpower,
  41. .adjust_txpower = b43_phy_lcn_op_adjust_txpower,
  42. */
  43. };