提交 47c30a2c 编写于 作者: B Bill Pemberton 提交者: Greg Kroah-Hartman

Staging: comedi: Remove ni_65xx_private typedef

Signed-off-by: NBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 f4c6b319
......@@ -282,14 +282,15 @@ static DEFINE_PCI_DEVICE_TABLE(ni_65xx_pci_table) = {
MODULE_DEVICE_TABLE(pci, ni_65xx_pci_table);
typedef struct {
struct ni_65xx_private {
struct mite_struct *mite;
unsigned int filter_interval;
unsigned short filter_enable[NI_65XX_MAX_NUM_PORTS];
unsigned short output_bits[NI_65XX_MAX_NUM_PORTS];
unsigned short dio_direction[NI_65XX_MAX_NUM_PORTS];
} ni_65xx_private;
static inline ni_65xx_private *private(struct comedi_device * dev)
};
static inline struct ni_65xx_private *private(struct comedi_device * dev)
{
return dev->private;
}
......@@ -625,7 +626,7 @@ static int ni_65xx_attach(struct comedi_device * dev, struct comedi_devconfig *
printk("comedi%d: ni_65xx:", dev->minor);
if ((ret = alloc_private(dev, sizeof(ni_65xx_private))) < 0)
if ((ret = alloc_private(dev, sizeof(struct ni_65xx_private))) < 0)
return ret;
ret = ni_65xx_find_device(dev, it->options[0], it->options[1]);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册