Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 267771
b: refs/heads/master
c: 51ce231
h: refs/heads/master
i:
  267769: 7471ed4
  267767: 4555996
v: v3
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 6ac5cfa commit 0f20ecd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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: 5aca114d91e726db89d28e56f260b811cc76a3dd
refs/heads/master: 51ce231f6a77ffc42677e9dea57c5f1d31240ee3
12 changes: 6 additions & 6 deletions trunk/drivers/staging/rtl8192e/r8192E_phy.c
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ void rtl8192_SetTxPowerLevel(struct net_device *dev, u8 channel)
return;
}
u8 rtl8192_phy_SetSwChnlCmdArray(
SwChnlCmd* CmdTable,
struct sw_chnl_cmd* CmdTable,
u32 CmdTableIdx,
u32 CmdTableSz,
SwChnlCmdID CmdID,
Expand All @@ -833,7 +833,7 @@ u8 rtl8192_phy_SetSwChnlCmdArray(
u32 msDelay
)
{
SwChnlCmd* pCmd;
struct sw_chnl_cmd* pCmd;

if (CmdTable == NULL)
{
Expand All @@ -858,13 +858,13 @@ u8 rtl8192_phy_SetSwChnlCmdArray(
u8 rtl8192_phy_SwChnlStepByStep(struct net_device *dev, u8 channel, u8* stage, u8* step, u32* delay)
{
struct r8192_priv *priv = rtllib_priv(dev);
SwChnlCmd PreCommonCmd[MAX_PRECMD_CNT];
struct sw_chnl_cmd PreCommonCmd[MAX_PRECMD_CNT];
u32 PreCommonCmdCnt;
SwChnlCmd PostCommonCmd[MAX_POSTCMD_CNT];
struct sw_chnl_cmd PostCommonCmd[MAX_POSTCMD_CNT];
u32 PostCommonCmdCnt;
SwChnlCmd RfDependCmd[MAX_RFDEPENDCMD_CNT];
struct sw_chnl_cmd RfDependCmd[MAX_RFDEPENDCMD_CNT];
u32 RfDependCmdCnt;
SwChnlCmd *CurrentCmd = NULL;
struct sw_chnl_cmd *CurrentCmd = NULL;
u8 eRFPath;

RT_TRACE(COMP_TRACE, "====>%s()====stage:%d, step:%d, channel:%d\n", __func__, *stage, *step, channel);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192e/r8192E_phy.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ typedef enum _SwChnlCmdID {
} SwChnlCmdID;

/*--------------------------------Define structure--------------------------------*/
typedef struct _SwChnlCmd {
struct sw_chnl_cmd {
SwChnlCmdID CmdID;
u32 Para1;
u32 Para2;
u32 msDelay;
} __attribute__ ((packed)) SwChnlCmd;
} __packed;

extern u32 rtl819XMACPHY_Array_PG[];
extern u32 rtl819XPHY_REG_1T2RArray[];
Expand Down

0 comments on commit 0f20ecd

Please sign in to comment.