···1818#define B43_PHY_HT_AFE_CTL6 B43_PHY_EXTG(0x119)191920202121+/* Values for PHY registers used on channel switching */2222+struct b43_phy_ht_channeltab_e_phy {2323+ /* TODO */2424+};2525+2626+2127struct b43_phy_ht {2228};2329
+30
drivers/net/wireless/b43/radio_2059.c
···11+/*22+33+ Broadcom B43 wireless driver44+ IEEE 802.11n 2059 radio device data tables55+66+ This program is free software; you can redistribute it and/or modify77+ it under the terms of the GNU General Public License as published by88+ the Free Software Foundation; either version 2 of the License, or99+ (at your option) any later version.1010+1111+ This program is distributed in the hope that it will be useful,1212+ but WITHOUT ANY WARRANTY; without even the implied warranty of1313+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1414+ GNU General Public License for more details.1515+1616+ You should have received a copy of the GNU General Public License1717+ along with this program; see the file COPYING. If not, write to1818+ the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,1919+ Boston, MA 02110-1301, USA.2020+2121+*/2222+2323+#include "b43.h"2424+#include "radio_2059.h"2525+2626+const struct b43_phy_ht_channeltab_e_radio20592727+*b43_phy_ht_get_channeltab_e_r2059(struct b43_wldev *dev, u16 freq)2828+{2929+ return NULL;3030+}
+21
drivers/net/wireless/b43/radio_2059.h
···11+#ifndef B43_RADIO_2059_H_22+#define B43_RADIO_2059_H_33+44+#include <linux/types.h>55+66+#include "phy_ht.h"77+88+/* Values for various registers uploaded on channel switching */99+struct b43_phy_ht_channeltab_e_radio2059 {1010+ /* The channel frequency in MHz */1111+ u16 freq;1212+ /* Values for radio registers */1313+ /* TODO */1414+ /* Values for PHY registers */1515+ struct b43_phy_ht_channeltab_e_phy phy_regs;1616+};1717+1818+const struct b43_phy_ht_channeltab_e_radio20591919+*b43_phy_ht_get_channeltab_e_r2059(struct b43_wldev *dev, u16 freq);2020+2121+#endif /* B43_RADIO_2059_H_ */