Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 267865
b: refs/heads/master
c: e93e0f6
h: refs/heads/master
i:
  267863: 6e3509c
v: v3
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 17e67b3 commit d210470
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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: bb5e482246e0f41c3b39f758c61bdf75f191cbcc
refs/heads/master: e93e0f6aabd51652fcfa943ca8e8ec2f4947156e
2 changes: 1 addition & 1 deletion trunk/drivers/staging/rtl8192e/r8192E_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ rtl8192e_SetHwReg(struct net_device *dev,u8 variable,u8* val)

case HW_VAR_MEDIA_STATUS:
{
RT_OP_MODE OpMode = *((RT_OP_MODE *)(val));
enum rt_op_mode OpMode = *((enum rt_op_mode *)(val));
LED_CTL_MODE LedAction = LED_CTL_NO_LINK;
u8 btMsr = read_nic_byte(dev, MSR);

Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/staging/rtl8192e/rtllib.h
Original file line number Diff line number Diff line change
Expand Up @@ -403,12 +403,12 @@ enum hw_variables {
HW_VAR_RF_TIMING,
};

typedef enum _RT_OP_MODE{
enum rt_op_mode {
RT_OP_MODE_AP,
RT_OP_MODE_INFRASTRUCTURE,
RT_OP_MODE_IBSS,
RT_OP_MODE_NO_LINK,
} RT_OP_MODE, *PRT_OP_MODE;
};


#define aSifsTime (((priv->rtllib->current_network.mode == IEEE_A)||(priv->rtllib->current_network.mode == IEEE_N_24G)||(priv->rtllib->current_network.mode == IEEE_N_5G))? 16 : 10)
Expand Down Expand Up @@ -2099,7 +2099,7 @@ struct rtllib_device {
u8 hwscan_sem_up;
u8 CntAfterLink;

RT_OP_MODE OpMode;
enum rt_op_mode OpMode;

u8 VersionID;
/* The last AssocReq/Resp IEs */
Expand Down

0 comments on commit d210470

Please sign in to comment.