Commit ebf86ea9 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: dt282x: remove 'volatile' on private data variables

As indicated by checkpatch.pl, "WARNING: Use of volatile is usually
wrong: ...". The variables in the private data that are marked
volatile don't need to be. Remove the volatile.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 804ee9ac
...@@ -330,21 +330,21 @@ struct dt282x_private { ...@@ -330,21 +330,21 @@ struct dt282x_private {
unsigned short ao[2]; unsigned short ao[2];
volatile int dacsr; /* software copies of registers */ int dacsr; /* software copies of registers */
volatile int adcsr; int adcsr;
volatile int supcsr; int supcsr;
volatile int ntrig; int ntrig;
volatile int nread; int nread;
struct { struct {
int chan; int chan;
unsigned short *buf; /* DMA buffer */ unsigned short *buf; /* DMA buffer */
volatile int size; /* size of current transfer */ int size; /* size of current transfer */
} dma[2]; } dma[2];
int dma_maxsize; /* max size of DMA transfer (in bytes) */ int dma_maxsize; /* max size of DMA transfer (in bytes) */
int usedma; /* driver uses DMA */ int usedma; /* driver uses DMA */
volatile int current_dma_index; int current_dma_index;
int dma_dir; int dma_dir;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment