Staging: comedi: Remove dt2811_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:18:59 -04:00 committed by Greg Kroah-Hartman
parent 51091b5420
commit d89da61754

View file

@ -238,7 +238,8 @@ static int dt2811_do_insn_bits(struct comedi_device * dev, struct comedi_subdevi
struct comedi_insn * insn, unsigned int * data); struct comedi_insn * insn, unsigned int * data);
enum { card_2811_pgh, card_2811_pgl }; enum { card_2811_pgh, card_2811_pgl };
typedef struct {
struct dt2811_private {
int ntrig; int ntrig;
int curadchan; int curadchan;
enum { enum {
@ -249,9 +250,9 @@ typedef struct {
} dac_range[2]; } dac_range[2];
const struct comedi_lrange *range_type_list[2]; const struct comedi_lrange *range_type_list[2];
unsigned int ao_readback[2]; unsigned int ao_readback[2];
} dt2811_private; };
#define devpriv ((dt2811_private *)dev->private) #define devpriv ((struct dt2811_private *)dev->private)
static const struct comedi_lrange *dac_range_types[] = { static const struct comedi_lrange *dac_range_types[] = {
&range_bipolar5, &range_bipolar5,
@ -377,7 +378,7 @@ static int dt2811_attach(struct comedi_device * dev, struct comedi_devconfig * i
if ((ret = alloc_subdevices(dev, 4)) < 0) if ((ret = alloc_subdevices(dev, 4)) < 0)
return ret; return ret;
if ((ret = alloc_private(dev, sizeof(dt2811_private))) < 0) if ((ret = alloc_private(dev, sizeof(struct dt2811_private))) < 0)
return ret; return ret;
switch (it->options[2]) { switch (it->options[2]) {
case 0: case 0: