diff options
author | H Hartley Sweeten <[email protected]> | 2014-11-11 16:55:26 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2014-11-26 15:33:23 -0800 |
commit | 2dd9681196c56a7ae48ec99522acc23843844bee (patch) | |
tree | d48fa93c389ecd696c7273db302a6110affb748f | |
parent | ec1b2320009bc2a9893c7a6eef32fdced0b4455d (diff) |
staging: comedi: dmm32at: remove unused members of the private data
The 'data' and 'ai_inuse' members in the private data are not used in the
driver. Remove them.
Signed-off-by: H Hartley Sweeten <[email protected]>
Reviewed-by: Ian Abbott <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/comedi/drivers/dmm32at.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/comedi/drivers/dmm32at.c b/drivers/staging/comedi/drivers/dmm32at.c index 297338f4f46b..6413f60c6f6b 100644 --- a/drivers/staging/comedi/drivers/dmm32at.c +++ b/drivers/staging/comedi/drivers/dmm32at.c @@ -151,8 +151,6 @@ static const struct comedi_lrange dmm32at_aoranges = { }; struct dmm32at_private { - int data; - int ai_inuse; unsigned char dio_config; }; |