Commit ca6f10ca authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

Staging: comedi: Remove dt2814_private typedef

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 7f435c06
......@@ -72,11 +72,13 @@ COMEDI_INITCLEANUP(driver_dt2814);
static irqreturn_t dt2814_interrupt(int irq, void *dev PT_REGS_ARG);
typedef struct {
struct dt2814_private {
int ntrig;
int curadchan;
} dt2814_private;
#define devpriv ((dt2814_private *)dev->private)
};
#define devpriv ((struct dt2814_private *)dev->private)
#define DT2814_TIMEOUT 10
#define DT2814_MAX_SPEED 100000 /* Arbitrary 10 khz limit */
......@@ -309,7 +311,7 @@ static int dt2814_attach(struct comedi_device * dev, struct comedi_devconfig * i
if ((ret = alloc_subdevices(dev, 1)) < 0)
return ret;
if ((ret = alloc_private(dev, sizeof(dt2814_private))) < 0)
if ((ret = alloc_private(dev, sizeof(struct dt2814_private))) < 0)
return ret;
s = dev->subdevices + 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment