Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 162411
b: refs/heads/master
c: b7caf94
h: refs/heads/master
i:
  162409: e5643b2
  162407: dd62451
v: v3
  • Loading branch information
Pekka Enberg authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent db49a65 commit 4c2168d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 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: 7c3ab53c467acf23fd4e8265f3b867461f0bebe4
refs/heads/master: b7caf94fb8dcfea7a44251977bb3f1b7a8cbfeb4
2 changes: 1 addition & 1 deletion trunk/drivers/staging/winbond/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct wbsoft_priv {

MTO_PARAMETERS sMtoPara; // MTO_struct ...
struct hw_data sHwData; //For HAL
MDS Mds;
struct wb35_mds Mds;

spinlock_t SpinLock;

Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/staging/winbond/mds.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
unsigned char
Mds_initial(struct wbsoft_priv * adapter)
{
PMDS pMds = &adapter->Mds;
struct wb35_mds *pMds = &adapter->Mds;

pMds->TxPause = false;
pMds->TxRTSThreshold = DEFAULT_RTSThreshold;
Expand Down Expand Up @@ -220,7 +220,7 @@ static void Mds_DurationSet(struct wbsoft_priv *adapter, PDESCRIPTOR pDes, u8
static u16 Mds_BodyCopy(struct wbsoft_priv *adapter, PDESCRIPTOR pDes, u8 *TargetBuffer)
{
PT00_DESCRIPTOR pT00;
PMDS pMds = &adapter->Mds;
struct wb35_mds *pMds = &adapter->Mds;
u8 *buffer;
u8 *src_buffer;
u8 *pctmp;
Expand Down Expand Up @@ -320,7 +320,7 @@ static u16 Mds_BodyCopy(struct wbsoft_priv *adapter, PDESCRIPTOR pDes, u8 *Targe

static void Mds_HeaderCopy(struct wbsoft_priv * adapter, PDESCRIPTOR pDes, u8 *TargetBuffer)
{
PMDS pMds = &adapter->Mds;
struct wb35_mds *pMds = &adapter->Mds;
u8 *src_buffer = pDes->buffer_address[0];//931130.5.g
PT00_DESCRIPTOR pT00;
PT01_DESCRIPTOR pT01;
Expand Down Expand Up @@ -417,7 +417,7 @@ void
Mds_Tx(struct wbsoft_priv * adapter)
{
struct hw_data * pHwData = &adapter->sHwData;
PMDS pMds = &adapter->Mds;
struct wb35_mds *pMds = &adapter->Mds;
DESCRIPTOR TxDes;
PDESCRIPTOR pTxDes = &TxDes;
u8 *XmitBufAddress;
Expand Down Expand Up @@ -552,7 +552,7 @@ Mds_Tx(struct wbsoft_priv * adapter)
void
Mds_SendComplete(struct wbsoft_priv * adapter, PT02_DESCRIPTOR pT02)
{
PMDS pMds = &adapter->Mds;
struct wb35_mds *pMds = &adapter->Mds;
struct hw_data * pHwData = &adapter->sHwData;
u8 PacketId = (u8)pT02->T02_Tx_PktID;
unsigned char SendOK = true;
Expand Down
5 changes: 2 additions & 3 deletions trunk/drivers/staging/winbond/mds_s.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ enum {
#define PACKET_COME_FROM_MLME 0x80
#define PACKET_SEND_COMPLETE 0xff

typedef struct _MDS
{
struct wb35_mds {
// For Tx usage
u8 TxOwner[ ((MAX_USB_TX_BUFFER_NUMBER + 3) & ~0x03) ];
u8 *pTxBuffer;
Expand Down Expand Up @@ -133,7 +132,7 @@ typedef struct _MDS
u32 TxTsc; // 20060214
u32 TxTsc_2; // 20060214

} MDS, *PMDS;
};


typedef struct _RxBuffer
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/winbond/wb35tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static void Wb35Tx_complete(struct urb * pUrb)
struct wbsoft_priv *adapter = pUrb->context;
struct hw_data * pHwData = &adapter->sHwData;
struct wb35_tx *pWb35Tx = &pHwData->Wb35Tx;
PMDS pMds = &adapter->Mds;
struct wb35_mds *pMds = &adapter->Mds;

printk("wb35: tx complete\n");
// Variable setting
Expand Down Expand Up @@ -67,7 +67,7 @@ static void Wb35Tx(struct wbsoft_priv *adapter)
struct hw_data * pHwData = &adapter->sHwData;
struct wb35_tx *pWb35Tx = &pHwData->Wb35Tx;
u8 *pTxBufferAddress;
PMDS pMds = &adapter->Mds;
struct wb35_mds *pMds = &adapter->Mds;
struct urb * pUrb = (struct urb *)pWb35Tx->Tx4Urb;
int retv;
u32 SendIndex;
Expand Down

0 comments on commit 4c2168d

Please sign in to comment.