Staging: comedi: Remove priv_pcm3724 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:48 -04:00 коммит произвёл Greg Kroah-Hartman
Родитель 050509fa55
Коммит 8e7b864b3c
1 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -74,10 +74,11 @@ typedef struct {
} boardtype; } boardtype;
//used to track configured dios //used to track configured dios
typedef struct { struct priv_pcm3724 {
int dio_1; int dio_1;
int dio_2; int dio_2;
} priv_pcm3724; };
static const boardtype boardtypes[] = { static const boardtype boardtypes[] = {
{"pcm3724", 48, 2, 0x00fc, PCM3724_SIZE,}, {"pcm3724", 48, 2, 0x00fc, PCM3724_SIZE,},
}; };
@ -180,10 +181,10 @@ static void enable_chan(struct comedi_device * dev, struct comedi_subdevice * s,
{ {
unsigned int mask; unsigned int mask;
int gatecfg; int gatecfg;
priv_pcm3724 *priv; struct priv_pcm3724 *priv;
gatecfg = 0; gatecfg = 0;
priv = (priv_pcm3724 *) (dev->private); priv = (struct priv_pcm3724 *) (dev->private);
mask = 1 << CR_CHAN(chanspec); mask = 1 << CR_CHAN(chanspec);
if (s == dev->subdevices) { // subdev 0 if (s == dev->subdevices) { // subdev 0
@ -259,11 +260,11 @@ static int pcm3724_attach(struct comedi_device * dev, struct comedi_devconfig *
iobase = it->options[0]; iobase = it->options[0];
iorange = this_board->io_range; iorange = this_board->io_range;
if ((ret = alloc_private(dev, sizeof(priv_pcm3724))) < 0) if ((ret = alloc_private(dev, sizeof(struct priv_pcm3724))) < 0)
return -ENOMEM; return -ENOMEM;
((priv_pcm3724 *) (dev->private))->dio_1 = 0; ((struct priv_pcm3724 *) (dev->private))->dio_1 = 0;
((priv_pcm3724 *) (dev->private))->dio_2 = 0; ((struct priv_pcm3724 *) (dev->private))->dio_2 = 0;
printk("comedi%d: pcm3724: board=%s, 0x%03lx ", dev->minor, printk("comedi%d: pcm3724: board=%s, 0x%03lx ", dev->minor,
this_board->name, iobase); this_board->name, iobase);