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

Staging: comedi: Remove ni6527_private typedef

Signed-off-by: NBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 97070b32
......@@ -112,12 +112,13 @@ static DEFINE_PCI_DEVICE_TABLE(ni6527_pci_table) = {
MODULE_DEVICE_TABLE(pci, ni6527_pci_table);
typedef struct {
struct ni6527_private {
struct mite_struct *mite;
unsigned int filter_interval;
unsigned int filter_enable;
} ni6527_private;
#define devpriv ((ni6527_private *)dev->private)
};
#define devpriv ((struct ni6527_private *)dev->private)
static int ni6527_find_device(struct comedi_device * dev, int bus, int slot);
......@@ -370,7 +371,7 @@ static int ni6527_attach(struct comedi_device * dev, struct comedi_devconfig * i
printk("comedi%d: ni6527:", dev->minor);
if ((ret = alloc_private(dev, sizeof(ni6527_private))) < 0)
if ((ret = alloc_private(dev, sizeof(struct ni6527_private))) < 0)
return ret;
ret = ni6527_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.
先完成此消息的编辑!
想要评论请 注册