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@xxxxxxxxx> --- drivers/staging/bcm/Adapter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index acf7add..95652cb 100644 --- a/drivers/staging/bcm/Adapter.h +++ b/drivers/staging/bcm/Adapter.h @@ -244,7 +244,7 @@ typedef struct _PER_TARANG_DATA { struct _MINI_ADAPTER *Adapter; struct sk_buff *RxAppControlHead; struct sk_buff *RxAppControlTail; - volatile int AppCtrlQueueLen; + int AppCtrlQueueLen; BOOLEAN MacTracingEnabled; BOOLEAN bApplicationToExit; S_MIBS_DROPPED_APP_CNTRL_MESSAGES stDroppedAppCntrlMsgs; @@ -351,7 +351,7 @@ struct _MINI_ADAPTER { u32 msg_enable; CHAR *caDsxReqResp; atomic_t ApplicationRunning; - volatile int CtrlQueueLen; + int CtrlQueueLen; atomic_t AppCtrlQueueLen; BOOLEAN AppCtrlQueueOverFlow; atomic_t CurrentApplicationCount; -- 1.7.9.5 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/devel