mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
staging: brcm80211: removed unused Broadcom specific ioctls codes
Code cleanup. Removal of code that is not invoked. Signed-off-by: Roland Vossen <rvossen@broadcom.com> Reviewed-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
59c5f46fbe
commit
7306e4e311
@ -2350,27 +2350,6 @@ bool wlc_phy_test_ison(wlc_phy_t *ppi)
|
||||
return pi->phytest_on;
|
||||
}
|
||||
|
||||
bool wlc_phy_ant_rxdiv_get(wlc_phy_t *ppi, u8 *pval)
|
||||
{
|
||||
phy_info_t *pi = (phy_info_t *) ppi;
|
||||
bool ret = true;
|
||||
|
||||
wlc_phyreg_enter(ppi);
|
||||
|
||||
if (ISNPHY(pi)) {
|
||||
|
||||
ret = false;
|
||||
} else if (ISLCNPHY(pi)) {
|
||||
u16 crsctrl = read_phy_reg(pi, 0x410);
|
||||
u16 div = crsctrl & (0x1 << 1);
|
||||
*pval = (div | ((crsctrl & (0x1 << 0)) ^ (div >> 1)));
|
||||
}
|
||||
|
||||
wlc_phyreg_exit(ppi);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void wlc_phy_ant_rxdiv_set(wlc_phy_t *ppi, u8 val)
|
||||
{
|
||||
phy_info_t *pi = (phy_info_t *) ppi;
|
||||
|
@ -226,7 +226,6 @@ extern void wlc_phy_edcrs_lock(wlc_phy_t *pih, bool lock);
|
||||
extern void wlc_phy_cal_papd_recal(wlc_phy_t *ppi);
|
||||
|
||||
extern void wlc_phy_ant_rxdiv_set(wlc_phy_t *ppi, u8 val);
|
||||
extern bool wlc_phy_ant_rxdiv_get(wlc_phy_t *ppi, u8 *pval);
|
||||
extern void wlc_phy_clear_tssi(wlc_phy_t *ppi);
|
||||
extern void wlc_phy_hold_upd(wlc_phy_t *ppi, mbool id, bool val);
|
||||
extern void wlc_phy_mute_upd(wlc_phy_t *ppi, bool val, mbool flags);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -805,8 +805,6 @@ extern void wlc_write_template_ram(struct wlc_info *wlc, int offset, int len,
|
||||
void *buf);
|
||||
extern void wlc_write_hw_bcntemplates(struct wlc_info *wlc, void *bcn, int len,
|
||||
bool both);
|
||||
extern void wlc_set_cwmin(struct wlc_info *wlc, u16 newmin);
|
||||
extern void wlc_set_cwmax(struct wlc_info *wlc, u16 newmax);
|
||||
extern void wlc_pllreq(struct wlc_info *wlc, bool set, mbool req_bit);
|
||||
extern void wlc_reset_bmac_done(struct wlc_info *wlc);
|
||||
|
||||
@ -928,10 +926,7 @@ extern ratespec_t wlc_lowest_basic_rspec(struct wlc_info *wlc,
|
||||
wlc_rateset_t *rs);
|
||||
extern void wlc_radio_disable(struct wlc_info *wlc);
|
||||
extern void wlc_bcn_li_upd(struct wlc_info *wlc);
|
||||
|
||||
extern int wlc_get_revision_info(struct wlc_info *wlc, void *buf, uint len);
|
||||
extern void wlc_set_home_chanspec(struct wlc_info *wlc, chanspec_t chanspec);
|
||||
extern void wlc_watchdog_upd(struct wlc_info *wlc, bool tbtt);
|
||||
extern bool wlc_ps_allowed(struct wlc_info *wlc);
|
||||
extern bool wlc_stay_awake(struct wlc_info *wlc);
|
||||
extern void wlc_wme_initparams_sta(struct wlc_info *wlc, wme_param_ie_t *pe);
|
||||
|
@ -134,7 +134,6 @@ struct rsn_parms {
|
||||
};
|
||||
|
||||
/*
|
||||
* buffer length needed for wlc_format_ssid
|
||||
* 32 SSID chars, max of 4 chars for each SSID char "\xFF", plus NULL.
|
||||
*/
|
||||
#define SSID_FMT_BUF_LEN ((4 * IEEE80211_MAX_SSID_LEN) + 1)
|
||||
@ -558,18 +557,10 @@ extern void wlc_scan_stop(struct wlc_info *wlc);
|
||||
extern int wlc_get_curband(struct wlc_info *wlc);
|
||||
extern void wlc_wait_for_tx_completion(struct wlc_info *wlc, bool drop);
|
||||
|
||||
#if defined(BCMDBG)
|
||||
extern int wlc_iocregchk(struct wlc_info *wlc, uint band);
|
||||
#endif
|
||||
|
||||
/* helper functions */
|
||||
extern bool wlc_check_radio_disabled(struct wlc_info *wlc);
|
||||
extern bool wlc_radio_monitor_stop(struct wlc_info *wlc);
|
||||
|
||||
#if defined(BCMDBG)
|
||||
extern int wlc_format_ssid(char *buf, const unsigned char ssid[], uint ssid_len);
|
||||
#endif
|
||||
|
||||
#define MAXBANDS 2 /* Maximum #of bands */
|
||||
/* bandstate array indices */
|
||||
#define BAND_2G_INDEX 0 /* wlc->bandstate[x] index */
|
||||
|
@ -364,39 +364,6 @@ void wlc_stf_detach(struct wlc_info *wlc)
|
||||
{
|
||||
}
|
||||
|
||||
int wlc_stf_ant_txant_validate(struct wlc_info *wlc, s8 val)
|
||||
{
|
||||
int bcmerror = 0;
|
||||
|
||||
/* when there is only 1 tx_streams, don't allow to change the txant */
|
||||
if (WLCISNPHY(wlc->band) && (wlc->stf->txstreams == 1))
|
||||
return ((val == wlc->stf->txant) ? bcmerror : -EINVAL);
|
||||
|
||||
switch (val) {
|
||||
case -1:
|
||||
val = ANT_TX_DEF;
|
||||
break;
|
||||
case 0:
|
||||
val = ANT_TX_FORCE_0;
|
||||
break;
|
||||
case 1:
|
||||
val = ANT_TX_FORCE_1;
|
||||
break;
|
||||
case 3:
|
||||
val = ANT_TX_LAST_RX;
|
||||
break;
|
||||
default:
|
||||
bcmerror = -EINVAL;
|
||||
break;
|
||||
}
|
||||
|
||||
if (bcmerror == 0)
|
||||
wlc->stf->txant = (s8) val;
|
||||
|
||||
return bcmerror;
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* Centralized txant update function. call it whenever wlc->stf->txant and/or wlc->stf->txchain
|
||||
* change
|
||||
|
@ -28,8 +28,6 @@ extern int wlc_stf_ss_update(struct wlc_info *wlc, struct wlcband *band);
|
||||
extern void wlc_stf_phy_txant_upd(struct wlc_info *wlc);
|
||||
extern int wlc_stf_txchain_set(struct wlc_info *wlc, s32 int_val, bool force);
|
||||
extern bool wlc_stf_stbc_rx_set(struct wlc_info *wlc, s32 int_val);
|
||||
|
||||
extern int wlc_stf_ant_txant_validate(struct wlc_info *wlc, s8 val);
|
||||
extern void wlc_stf_phy_txant_upd(struct wlc_info *wlc);
|
||||
extern void wlc_stf_phy_chain_calc(struct wlc_info *wlc);
|
||||
extern u16 wlc_stf_phytxchain_sel(struct wlc_info *wlc, ratespec_t rspec);
|
||||
|
Loading…
x
Reference in New Issue
Block a user