Staging: comedi: Remove atao_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:16:12 -04:00 committed by Greg Kroah-Hartman
parent 3cc3872bbd
commit 75b8073932
1 changed files with 6 additions and 4 deletions

View File

@ -168,15 +168,17 @@ static const atao_board atao_boards[] = {
#define thisboard ((atao_board *)dev->board_ptr)
typedef struct {
struct atao_private {
unsigned short cfg1;
unsigned short cfg2;
unsigned short cfg3;
/* Used for AO readback */
unsigned int ao_readback[10];
} atao_private;
#define devpriv ((atao_private *)dev->private)
};
#define devpriv ((struct atao_private *)dev->private)
static int atao_attach(struct comedi_device * dev, struct comedi_devconfig * it);
static int atao_detach(struct comedi_device * dev);
@ -230,7 +232,7 @@ static int atao_attach(struct comedi_device * dev, struct comedi_devconfig * it)
dev->board_name = thisboard->name;
if (alloc_private(dev, sizeof(atao_private)) < 0)
if (alloc_private(dev, sizeof(struct atao_private)) < 0)
return -ENOMEM;
if (alloc_subdevices(dev, 4) < 0)