Skip to content

Commit

Permalink
Staging: comedi: Remove ni6527_private typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 97070b3 commit f4c6b31
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/staging/comedi/drivers/ni_6527.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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]);
Expand Down

0 comments on commit f4c6b31

Please sign in to comment.