mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
staging: comedi: aio_iiro_16: remove the private data
The private data is not used by this driver. Remove the struct, devpriv macro, and the allocation. 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>
This commit is contained in:
parent
843c042d15
commit
3808dd926f
1 changed files with 0 additions and 11 deletions
|
@ -57,14 +57,6 @@ static const struct aio_iiro_16_board aio_iiro_16_boards[] = {
|
|||
.do_ = 16},
|
||||
};
|
||||
|
||||
struct aio_iiro_16_private {
|
||||
int data;
|
||||
struct pci_dev *pci_dev;
|
||||
unsigned int ao_readback[2];
|
||||
};
|
||||
|
||||
#define devpriv ((struct aio_iiro_16_private *) dev->private)
|
||||
|
||||
static int aio_iiro_16_dio_insn_bits_write(struct comedi_device *dev,
|
||||
struct comedi_subdevice *s,
|
||||
struct comedi_insn *insn,
|
||||
|
@ -116,9 +108,6 @@ static int aio_iiro_16_attach(struct comedi_device *dev,
|
|||
|
||||
dev->iobase = iobase;
|
||||
|
||||
if (alloc_private(dev, sizeof(struct aio_iiro_16_private)) < 0)
|
||||
return -ENOMEM;
|
||||
|
||||
ret = comedi_alloc_subdevices(dev, 2);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue