Staging: bcm: Removes the volatile type definition from Adapter.h
This patch removes the following warning: "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt". There were two variables defined in this manner. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d426205d58
commit
26cd230f0e
@ -244,7 +244,7 @@ typedef struct _PER_TARANG_DATA {
|
|||||||
struct _MINI_ADAPTER *Adapter;
|
struct _MINI_ADAPTER *Adapter;
|
||||||
struct sk_buff *RxAppControlHead;
|
struct sk_buff *RxAppControlHead;
|
||||||
struct sk_buff *RxAppControlTail;
|
struct sk_buff *RxAppControlTail;
|
||||||
volatile int AppCtrlQueueLen;
|
int AppCtrlQueueLen;
|
||||||
BOOLEAN MacTracingEnabled;
|
BOOLEAN MacTracingEnabled;
|
||||||
BOOLEAN bApplicationToExit;
|
BOOLEAN bApplicationToExit;
|
||||||
S_MIBS_DROPPED_APP_CNTRL_MESSAGES stDroppedAppCntrlMsgs;
|
S_MIBS_DROPPED_APP_CNTRL_MESSAGES stDroppedAppCntrlMsgs;
|
||||||
@ -351,7 +351,7 @@ struct _MINI_ADAPTER {
|
|||||||
u32 msg_enable;
|
u32 msg_enable;
|
||||||
CHAR *caDsxReqResp;
|
CHAR *caDsxReqResp;
|
||||||
atomic_t ApplicationRunning;
|
atomic_t ApplicationRunning;
|
||||||
volatile int CtrlQueueLen;
|
int CtrlQueueLen;
|
||||||
atomic_t AppCtrlQueueLen;
|
atomic_t AppCtrlQueueLen;
|
||||||
BOOLEAN AppCtrlQueueOverFlow;
|
BOOLEAN AppCtrlQueueOverFlow;
|
||||||
atomic_t CurrentApplicationCount;
|
atomic_t CurrentApplicationCount;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user