Staging: comedi: Remove dt2815_private typedef

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Bill Pemberton 2009-03-16 22:14:57 -04:00 committed by Greg Kroah-Hartman
parent ca6f10ca86
commit 0b011a6f40
1 changed files with 6 additions and 4 deletions

View File

@ -88,12 +88,14 @@ COMEDI_INITCLEANUP(driver_dt2815);
static void dt2815_free_resources(struct comedi_device * dev);
typedef struct {
struct dt2815_private {
const struct comedi_lrange *range_type_list[8];
unsigned int ao_readback[8];
} dt2815_private;
};
#define devpriv ((dt2815_private *)dev->private)
#define devpriv ((struct dt2815_private *)dev->private)
static int dt2815_wait_for_status(struct comedi_device * dev, int status)
{
@ -196,7 +198,7 @@ static int dt2815_attach(struct comedi_device * dev, struct comedi_devconfig * i
if (alloc_subdevices(dev, 1) < 0)
return -ENOMEM;
if (alloc_private(dev, sizeof(dt2815_private)) < 0)
if (alloc_private(dev, sizeof(struct dt2815_private)) < 0)
return -ENOMEM;
s = dev->subdevices;