Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 267741
b: refs/heads/master
c: 2ae7ea8
h: refs/heads/master
i:
  267739: 9af7904
v: v3
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 9bd9bc1 commit c3c6682
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 910d9e5c2deec0a9068cef5f3ae8c336f6321537
refs/heads/master: 2ae7ea8cf099f0c68292c5e890dbfcc205a35f3e
5 changes: 2 additions & 3 deletions trunk/drivers/staging/rtl8192e/r8190P_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,7 @@ struct phy_ofdm_rx_status_rxsc_sgien_exintfflag {
u8 ex_intf_flag:1;
};//;

typedef struct _phy_ofdm_rx_status_report_819xpci
{
struct phy_sts_ofdm_819xpci {
u8 trsw_gain_X[4];
u8 pwdb_all;
u8 cfosho_X[4];
Expand All @@ -293,7 +292,7 @@ typedef struct _phy_ofdm_rx_status_report_819xpci
u8 max_ex_pwr;
u8 sgi_en;
u8 rxsc_sgien_exflg;
}phy_sts_ofdm_819xpci_t;
};//;

typedef struct _phy_cck_rx_status_report_819xpci
{
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192e/r8192E_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ void rtl8192_query_rxphystatus(
bool bToSelfBA
)
{
phy_sts_ofdm_819xpci_t* pofdm_buf;
struct phy_sts_ofdm_819xpci* pofdm_buf;
phy_sts_cck_819xpci_t * pcck_buf;
struct phy_ofdm_rx_status_rxsc_sgien_exintfflag * prxsc;
u8 *prxpkt;
Expand Down Expand Up @@ -1442,7 +1442,7 @@ void rtl8192_query_rxphystatus(
prxpkt += sizeof(rx_fwinfo);

pcck_buf = (phy_sts_cck_819xpci_t *)prxpkt;
pofdm_buf = (phy_sts_ofdm_819xpci_t *)prxpkt;
pofdm_buf = (struct phy_sts_ofdm_819xpci *)prxpkt;

pstats->RxMIMOSignalQuality[0] = -1;
pstats->RxMIMOSignalQuality[1] = -1;
Expand Down

0 comments on commit c3c6682

Please sign in to comment.