mirror of https://gitee.com/openkylin/linux.git
staging: rtl8192e: Convert typedef phy_ofdm_rx_status_rxsc_sgien_exintfflag to struct phy_ofdm_rx_status_rxsc_sgien_exintfflag
Remove typedef from struct. Rename struct. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
c13ac63b60
commit
910d9e5c2d
|
@ -271,12 +271,12 @@ struct log_int_8190 {
|
|||
u32 nIMR_RXFOVW;
|
||||
};
|
||||
|
||||
typedef struct _phy_ofdm_rx_status_rxsc_sgien_exintfflag{
|
||||
struct phy_ofdm_rx_status_rxsc_sgien_exintfflag {
|
||||
u8 reserved:4;
|
||||
u8 rxsc:2;
|
||||
u8 sgi_en:1;
|
||||
u8 ex_intf_flag:1;
|
||||
}phy_ofdm_rx_status_rxsc_sgien_exintfflag;
|
||||
};//;
|
||||
|
||||
typedef struct _phy_ofdm_rx_status_report_819xpci
|
||||
{
|
||||
|
|
|
@ -1407,7 +1407,7 @@ void rtl8192_query_rxphystatus(
|
|||
{
|
||||
phy_sts_ofdm_819xpci_t* pofdm_buf;
|
||||
phy_sts_cck_819xpci_t * pcck_buf;
|
||||
phy_ofdm_rx_status_rxsc_sgien_exintfflag* prxsc;
|
||||
struct phy_ofdm_rx_status_rxsc_sgien_exintfflag * prxsc;
|
||||
u8 *prxpkt;
|
||||
u8 i,max_spatial_stream, tmp_rxsnr, tmp_rxevm, rxsc_sgien_exflg;
|
||||
char rx_pwr[4], rx_pwr_all=0;
|
||||
|
@ -1580,7 +1580,7 @@ void rtl8192_query_rxphystatus(
|
|||
|
||||
|
||||
rxsc_sgien_exflg = pofdm_buf->rxsc_sgien_exflg;
|
||||
prxsc = (phy_ofdm_rx_status_rxsc_sgien_exintfflag *)&rxsc_sgien_exflg;
|
||||
prxsc = (struct phy_ofdm_rx_status_rxsc_sgien_exintfflag *)&rxsc_sgien_exflg;
|
||||
if (pdrvinfo->BW)
|
||||
priv->stats.received_bwtype[1+prxsc->rxsc]++;
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue