diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2012-06-28 02:04:04 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-07-07 02:40:05 +0400 |
commit | 149b98d1ea4e5d798cd7f954a239ed512c3bf7e5 (patch) | |
tree | 5205631c5f77a862561d936d93c7d8798025aa6b | |
parent | a7c6de4cf6712771155778c454a762cc2b38e12d (diff) | |
download | linux-149b98d1ea4e5d798cd7f954a239ed512c3bf7e5.tar.xz |
staging: comedi: adl_pci6208: remove unused variable in the private data
The 'data' variable in the private data struct is not used by the
driver. Remove it.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/comedi/drivers/adl_pci6208.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/comedi/drivers/adl_pci6208.c b/drivers/staging/comedi/drivers/adl_pci6208.c index 18ca4009d89a..dcaebfc22586 100644 --- a/drivers/staging/comedi/drivers/adl_pci6208.c +++ b/drivers/staging/comedi/drivers/adl_pci6208.c @@ -71,7 +71,6 @@ static const struct pci6208_board pci6208_boards[] = { }; struct pci6208_private { - int data; struct pci_dev *pci_dev; unsigned int ao_readback[2]; }; |