Commit 2d9d2385 authored by Hauke Mehrtens's avatar Hauke Mehrtens Committed by John W. Linville

b43: mark some functions and structs static

This fixes some sparse warnings.

b43_nphy_set_rxantenna() was not used anywhere.
Signed-off-by: default avatarHauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 2b6254da
...@@ -2789,10 +2789,6 @@ static void b43_nphy_iq_cal_gain_params(struct b43_wldev *dev, u16 core, ...@@ -2789,10 +2789,6 @@ static void b43_nphy_iq_cal_gain_params(struct b43_wldev *dev, u16 core,
* Tx and Rx * Tx and Rx
**************************************************/ **************************************************/
void b43_nphy_set_rxantenna(struct b43_wldev *dev, int antenna)
{//TODO
}
static void b43_nphy_op_adjust_txpower(struct b43_wldev *dev) static void b43_nphy_op_adjust_txpower(struct b43_wldev *dev)
{//TODO {//TODO
} }
...@@ -4892,7 +4888,7 @@ static void b43_nphy_superswitch_init(struct b43_wldev *dev, bool init) ...@@ -4892,7 +4888,7 @@ static void b43_nphy_superswitch_init(struct b43_wldev *dev, bool init)
} }
/* http://bcm-v4.sipsolutions.net/802.11/PHY/Init/N */ /* http://bcm-v4.sipsolutions.net/802.11/PHY/Init/N */
int b43_phy_initn(struct b43_wldev *dev) static int b43_phy_initn(struct b43_wldev *dev)
{ {
struct ssb_sprom *sprom = dev->dev->bus_sprom; struct ssb_sprom *sprom = dev->dev->bus_sprom;
struct b43_phy *phy = &dev->phy; struct b43_phy *phy = &dev->phy;
......
...@@ -2980,7 +2980,7 @@ static const struct b2056_inittab_entry b2056_inittab_rev8_rx[] = { ...@@ -2980,7 +2980,7 @@ static const struct b2056_inittab_entry b2056_inittab_rev8_rx[] = {
.rx = prefix##_rx, \ .rx = prefix##_rx, \
.rx_length = ARRAY_SIZE(prefix##_rx) .rx_length = ARRAY_SIZE(prefix##_rx)
struct b2056_inittabs_pts b2056_inittabs[] = { static struct b2056_inittabs_pts b2056_inittabs[] = {
[3] = { INITTABSPTS(b2056_inittab_rev3) }, [3] = { INITTABSPTS(b2056_inittab_rev3) },
[4] = { INITTABSPTS(b2056_inittab_rev4) }, [4] = { INITTABSPTS(b2056_inittab_rev4) },
[5] = { INITTABSPTS(b2056_inittab_rev5) }, [5] = { INITTABSPTS(b2056_inittab_rev5) },
......
...@@ -25,12 +25,12 @@ void b43_sdio_exit(void); ...@@ -25,12 +25,12 @@ void b43_sdio_exit(void);
#else /* CONFIG_B43_SDIO */ #else /* CONFIG_B43_SDIO */
int b43_sdio_request_irq(struct b43_wldev *dev, static inline int b43_sdio_request_irq(struct b43_wldev *dev,
void (*handler)(struct b43_wldev *dev)) void (*handler)(struct b43_wldev *dev))
{ {
return -ENODEV; return -ENODEV;
} }
void b43_sdio_free_irq(struct b43_wldev *dev) static inline void b43_sdio_free_irq(struct b43_wldev *dev)
{ {
} }
static inline int b43_sdio_init(void) static inline int b43_sdio_init(void)
......
...@@ -2800,7 +2800,7 @@ static const struct nphy_rf_control_override_rev7 ...@@ -2800,7 +2800,7 @@ static const struct nphy_rf_control_override_rev7
{ 0x0010, 0x344, 0x345, 0x0010, 4 }, { 0x0010, 0x344, 0x345, 0x0010, 4 },
}; };
struct nphy_gain_ctl_workaround_entry nphy_gain_ctl_wa_phy6_radio11_ghz2 = { static struct nphy_gain_ctl_workaround_entry nphy_gain_ctl_wa_phy6_radio11_ghz2 = {
{ 10, 14, 19, 27 }, { 10, 14, 19, 27 },
{ -5, 6, 10, 15 }, { -5, 6, 10, 15 },
{ 0xA, 0xA, 0xA, 0xA, 0xA, 0xA, 0xA, 0xA, 0xA, 0xA }, { 0xA, 0xA, 0xA, 0xA, 0xA, 0xA, 0xA, 0xA, 0xA, 0xA },
...@@ -2811,7 +2811,7 @@ struct nphy_gain_ctl_workaround_entry nphy_gain_ctl_wa_phy6_radio11_ghz2 = { ...@@ -2811,7 +2811,7 @@ struct nphy_gain_ctl_workaround_entry nphy_gain_ctl_wa_phy6_radio11_ghz2 = {
0x18, 0x18, 0x18, 0x18, 0x18, 0x18,
0x01D0, 0x5, 0x01D0, 0x5,
}; };
struct nphy_gain_ctl_workaround_entry nphy_gain_ctl_workaround[2][4] = { static struct nphy_gain_ctl_workaround_entry nphy_gain_ctl_workaround[2][4] = {
{ /* 2GHz */ { /* 2GHz */
{ /* PHY rev 3 */ { /* PHY rev 3 */
{ 7, 11, 16, 23 }, { 7, 11, 16, 23 },
......
...@@ -313,7 +313,7 @@ static const u32 b43_lcntab_0x18[] = { ...@@ -313,7 +313,7 @@ static const u32 b43_lcntab_0x18[] = {
* TX gain. * TX gain.
**************************************************/ **************************************************/
const struct b43_lcntab_tx_gain_tbl_entry static const struct b43_lcntab_tx_gain_tbl_entry
b43_lcntab_tx_gain_tbl_2ghz_ext_pa_rev0[B43_LCNTAB_TX_GAIN_SIZE] = { b43_lcntab_tx_gain_tbl_2ghz_ext_pa_rev0[B43_LCNTAB_TX_GAIN_SIZE] = {
{ 0x03, 0x00, 0x1f, 0x0, 0x48 }, { 0x03, 0x00, 0x1f, 0x0, 0x48 },
{ 0x03, 0x00, 0x1f, 0x0, 0x46 }, { 0x03, 0x00, 0x1f, 0x0, 0x46 },
...@@ -449,7 +449,7 @@ const struct b43_lcntab_tx_gain_tbl_entry ...@@ -449,7 +449,7 @@ const struct b43_lcntab_tx_gain_tbl_entry
* SW control. * SW control.
**************************************************/ **************************************************/
const u16 b43_lcntab_sw_ctl_4313_epa_rev0[] = { static const u16 b43_lcntab_sw_ctl_4313_epa_rev0[] = {
0x0002, 0x0008, 0x0004, 0x0001, 0x0002, 0x0008, 0x0002, 0x0008, 0x0004, 0x0001, 0x0002, 0x0008,
0x0004, 0x0001, 0x0002, 0x0008, 0x0004, 0x0001, 0x0004, 0x0001, 0x0002, 0x0008, 0x0004, 0x0001,
0x0002, 0x0008, 0x0004, 0x0001, 0x0002, 0x0008, 0x0002, 0x0008, 0x0004, 0x0001, 0x0002, 0x0008,
...@@ -631,7 +631,7 @@ static void b43_phy_lcn_upload_static_tables(struct b43_wldev *dev) ...@@ -631,7 +631,7 @@ static void b43_phy_lcn_upload_static_tables(struct b43_wldev *dev)
lcntab_upload(dev, B43_LCNTAB32(0x18, 0), b43_lcntab_0x18); lcntab_upload(dev, B43_LCNTAB32(0x18, 0), b43_lcntab_0x18);
} }
void b43_phy_lcn_load_tx_gain_tab(struct b43_wldev *dev, static void b43_phy_lcn_load_tx_gain_tab(struct b43_wldev *dev,
const struct b43_lcntab_tx_gain_tbl_entry *gain_table) const struct b43_lcntab_tx_gain_tbl_entry *gain_table)
{ {
u32 i; u32 i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment