Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304769
b: refs/heads/master
c: d426205
h: refs/heads/master
i:
  304767: ba50af8
v: v3
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed May 19, 2012
1 parent dff4aec commit 327e7ae
Show file tree
Hide file tree
Showing 2 changed files with 12 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: e1325ad19f460031cc6b6ae1a890e0e71cc645e4
refs/heads/master: d426205d588e0fd7924c0fd76c012f6f8667cccc
22 changes: 11 additions & 11 deletions trunk/drivers/staging/bcm/Adapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ typedef struct _PER_TARANG_DATA {
struct _MINI_ADAPTER *Adapter;
struct sk_buff *RxAppControlHead;
struct sk_buff *RxAppControlTail;
volatile INT AppCtrlQueueLen;
volatile int AppCtrlQueueLen;
BOOLEAN MacTracingEnabled;
BOOLEAN bApplicationToExit;
S_MIBS_DROPPED_APP_CNTRL_MESSAGES stDroppedAppCntrlMsgs;
Expand Down Expand Up @@ -338,9 +338,9 @@ typedef struct _STTARGETDSXBUFFER {
BOOLEAN valid;
} STTARGETDSXBUFFER, *PSTTARGETDSXBUFFER;

typedef INT (*FP_FLASH_WRITE)(struct _MINI_ADAPTER *, UINT, PVOID);
typedef int (*FP_FLASH_WRITE)(struct _MINI_ADAPTER *, UINT, PVOID);

typedef INT (*FP_FLASH_WRITE_STATUS)(struct _MINI_ADAPTER *, UINT, PVOID);
typedef int (*FP_FLASH_WRITE_STATUS)(struct _MINI_ADAPTER *, UINT, PVOID);

/*
* Driver adapter data structure
Expand All @@ -351,7 +351,7 @@ struct _MINI_ADAPTER {
u32 msg_enable;
CHAR *caDsxReqResp;
atomic_t ApplicationRunning;
volatile INT CtrlQueueLen;
volatile int CtrlQueueLen;
atomic_t AppCtrlQueueLen;
BOOLEAN AppCtrlQueueOverFlow;
atomic_t CurrentApplicationCount;
Expand Down Expand Up @@ -425,7 +425,7 @@ struct _MINI_ADAPTER {
BOOLEAN DeviceAccess;
BOOLEAN bIsAutoCorrectEnabled;
BOOLEAN bDDRInitDone;
INT DDRSetting;
int DDRSetting;
ULONG ulPowerSaveMode;
spinlock_t txtransmitlock;
B_UINT8 txtransmit_running;
Expand All @@ -447,14 +447,14 @@ struct _MINI_ADAPTER {
int (*bcm_file_readback_from_chip)(PVOID,
struct file *,
unsigned int);
INT (*interface_rdm)(PVOID,
int (*interface_rdm)(PVOID,
UINT,
PVOID,
INT);
INT (*interface_wrm)(PVOID,
int);
int (*interface_wrm)(PVOID,
UINT,
PVOID,
INT);
int);
int (*interface_transmit)(PVOID, PVOID , UINT);
BOOLEAN IdleMode;
BOOLEAN bDregRequestSentInIdleMode;
Expand Down Expand Up @@ -512,7 +512,7 @@ struct _MINI_ADAPTER {
BOOLEAN bSigCorrupted;
/* this should be set who so ever want to change the Headers. after Wrtie it should be reset immediately. */
BOOLEAN bHeaderChangeAllowed;
INT SelectedChip;
int SelectedChip;
BOOLEAN bEndPointHalted;
/* while bFlashRawRead will be true, Driver ignore map lay out and consider flash as of without any map. */
BOOLEAN bFlashRawRead;
Expand Down Expand Up @@ -556,7 +556,7 @@ typedef struct _DDR_SETTING {
UINT ulRegValue;
} DDR_SETTING, *PDDR_SETTING;
typedef DDR_SETTING DDR_SET_NODE, *PDDR_SET_NODE;
INT InitAdapter(PMINI_ADAPTER psAdapter);
int InitAdapter(PMINI_ADAPTER psAdapter);

/* =====================================================================
* Beceem vendor request codes for EP0
Expand Down

0 comments on commit 327e7ae

Please sign in to comment.