diff options
Diffstat (limited to 'drivers/net/wireless/b43/nphy.c')
-rw-r--r-- | drivers/net/wireless/b43/nphy.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/drivers/net/wireless/b43/nphy.c b/drivers/net/wireless/b43/nphy.c index 831986c459f8..4cfeab8560f6 100644 --- a/drivers/net/wireless/b43/nphy.c +++ b/drivers/net/wireless/b43/nphy.c | |||
@@ -34,10 +34,16 @@ void b43_nphy_set_rxantenna(struct b43_wldev *dev, int antenna) | |||
34 | {//TODO | 34 | {//TODO |
35 | } | 35 | } |
36 | 36 | ||
37 | void b43_nphy_xmitpower(struct b43_wldev *dev) | 37 | static void b43_nphy_op_adjust_txpower(struct b43_wldev *dev) |
38 | {//TODO | 38 | {//TODO |
39 | } | 39 | } |
40 | 40 | ||
41 | static enum b43_txpwr_result b43_nphy_op_recalc_txpower(struct b43_wldev *dev, | ||
42 | bool ignore_tssi) | ||
43 | {//TODO | ||
44 | return B43_TXPWR_RES_DONE; | ||
45 | } | ||
46 | |||
41 | static void b43_chantab_radio_upload(struct b43_wldev *dev, | 47 | static void b43_chantab_radio_upload(struct b43_wldev *dev, |
42 | const struct b43_nphy_channeltab_entry *e) | 48 | const struct b43_nphy_channeltab_entry *e) |
43 | { | 49 | { |
@@ -602,10 +608,6 @@ static unsigned int b43_nphy_op_get_default_chan(struct b43_wldev *dev) | |||
602 | return 36; | 608 | return 36; |
603 | } | 609 | } |
604 | 610 | ||
605 | static void b43_nphy_op_xmitpower(struct b43_wldev *dev) | ||
606 | {//TODO | ||
607 | } | ||
608 | |||
609 | const struct b43_phy_operations b43_phyops_n = { | 611 | const struct b43_phy_operations b43_phyops_n = { |
610 | .allocate = b43_nphy_op_allocate, | 612 | .allocate = b43_nphy_op_allocate, |
611 | .init = b43_nphy_op_init, | 613 | .init = b43_nphy_op_init, |
@@ -617,5 +619,6 @@ const struct b43_phy_operations b43_phyops_n = { | |||
617 | .software_rfkill = b43_nphy_op_software_rfkill, | 619 | .software_rfkill = b43_nphy_op_software_rfkill, |
618 | .switch_channel = b43_nphy_op_switch_channel, | 620 | .switch_channel = b43_nphy_op_switch_channel, |
619 | .get_default_chan = b43_nphy_op_get_default_chan, | 621 | .get_default_chan = b43_nphy_op_get_default_chan, |
620 | .xmitpower = b43_nphy_op_xmitpower, | 622 | .recalc_txpower = b43_nphy_op_recalc_txpower, |
623 | .adjust_txpower = b43_nphy_op_adjust_txpower, | ||
621 | }; | 624 | }; |