Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

b43: N-PHY: move declarations of chantables functions to correct files

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Rafał Miłecki and committed by
John W. Linville
9c803a03 2a870831

+10 -8
+5
drivers/net/wireless/b43/radio_2055.h
··· 251 251 void b2055_upload_inittab(struct b43_wldev *dev, 252 252 bool ghz5, bool ignore_uploadflag); 253 253 254 + /* Get the NPHY Channel Switch Table entry for a channel. 255 + * Returns NULL on failure to find an entry. */ 256 + const struct b43_nphy_channeltab_entry_rev2 * 257 + b43_nphy_get_chantabent_rev2(struct b43_wldev *dev, u8 channel); 258 + 254 259 #endif /* B43_RADIO_2055_H_ */
+5
drivers/net/wireless/b43/radio_2056.h
··· 1117 1117 void b2056_upload_inittabs(struct b43_wldev *dev, 1118 1118 bool ghz5, bool ignore_uploadflag); 1119 1119 1120 + /* Get the NPHY Channel Switch Table entry for a channel. 1121 + * Returns NULL on failure to find an entry. */ 1122 + const struct b43_nphy_channeltab_entry_rev3 * 1123 + b43_nphy_get_chantabent_rev3(struct b43_wldev *dev, u16 freq); 1124 + 1120 1125 #endif /* B43_RADIO_2056_H_ */
-8
drivers/net/wireless/b43/tables_nphy.h
··· 60 60 struct nphy_gain_ctl_workaround_entry *b43_nphy_get_gain_ctl_workaround_ent( 61 61 struct b43_wldev *dev, bool ghz5, bool ext_lna); 62 62 63 - /* Get the NPHY Channel Switch Table entry for a channel. 64 - * Returns NULL on failure to find an entry. */ 65 - const struct b43_nphy_channeltab_entry_rev2 * 66 - b43_nphy_get_chantabent_rev2(struct b43_wldev *dev, u8 channel); 67 - const struct b43_nphy_channeltab_entry_rev3 * 68 - b43_nphy_get_chantabent_rev3(struct b43_wldev *dev, u16 freq); 69 - 70 63 71 64 /* The N-PHY tables. */ 72 - 73 65 #define B43_NTAB_TYPEMASK 0xF0000000 74 66 #define B43_NTAB_8BIT 0x10000000 75 67 #define B43_NTAB_16BIT 0x20000000