提交 61f828ec 编写于 作者: H H Hartley Sweeten 提交者: Greg Kroah-Hartman

staging: comedi: ni_daq_dio24: remove comedi private data

The comedi private data, struct dio24_private, is not used in
the driver. Remove it and the kzalloc.
Signed-off-by: NH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 41722460
...@@ -83,25 +83,14 @@ static const struct dio24_board_struct dio24_boards[] = { ...@@ -83,25 +83,14 @@ static const struct dio24_board_struct dio24_boards[] = {
}, },
}; };
struct dio24_private {
int data; /* number of data points left to be taken */
};
static int dio24_attach(struct comedi_device *dev, struct comedi_devconfig *it) static int dio24_attach(struct comedi_device *dev, struct comedi_devconfig *it)
{ {
const struct dio24_board_struct *thisboard = comedi_board(dev); const struct dio24_board_struct *thisboard = comedi_board(dev);
struct dio24_private *devpriv;
struct comedi_subdevice *s; struct comedi_subdevice *s;
unsigned long iobase = 0; unsigned long iobase = 0;
struct pcmcia_device *link; struct pcmcia_device *link;
int ret; int ret;
devpriv = kzalloc(sizeof(*devpriv), GFP_KERNEL);
if (!devpriv)
return -ENOMEM;
dev->private = devpriv;
/* get base address, irq etc. based on bustype */ /* get base address, irq etc. based on bustype */
switch (thisboard->bustype) { switch (thisboard->bustype) {
case pcmcia_bustype: case pcmcia_bustype:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册