Skip to content

Commit

Permalink
Staging: comedi: Remove pci20xxx_private typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 52b3e34 commit 0e99a2b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions drivers/staging/comedi/drivers/ii_pci20kc.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,14 @@ typedef union {
} pci20341;
} pci20xxx_subdev_private;

typedef struct {
struct pci20xxx_private {

void *ioaddr;
pci20xxx_subdev_private subdev_private[PCI20000_MODULES];
} pci20xxx_private;
};


#define devpriv ((pci20xxx_private *)dev->private)
#define devpriv ((struct pci20xxx_private *)dev->private)
#define CHAN (CR_CHAN(it->chanlist[0]))

static int pci20xxx_attach(struct comedi_device * dev, struct comedi_devconfig * it);
Expand Down Expand Up @@ -209,7 +211,7 @@ static int pci20xxx_attach(struct comedi_device * dev, struct comedi_devconfig *

if ((ret = alloc_subdevices(dev, 1 + PCI20000_MODULES)) < 0)
return ret;
if ((ret = alloc_private(dev, sizeof(pci20xxx_private))) < 0)
if ((ret = alloc_private(dev, sizeof(struct pci20xxx_private))) < 0)
return ret;

devpriv->ioaddr = (void *)(unsigned long)it->options[0];
Expand Down Expand Up @@ -255,7 +257,7 @@ static int pci20xxx_attach(struct comedi_device * dev, struct comedi_devconfig *
}
}

/* initialize pci20xxx_private */
/* initialize struct pci20xxx_private */
pci20xxx_dio_init(dev, dev->subdevices + PCI20000_MODULES);

return 1;
Expand Down Expand Up @@ -449,7 +451,7 @@ static int pci20xxx_dio_insn_bits(struct comedi_device * dev, struct comedi_subd
static int pci20xxx_dio_insn_config(struct comedi_device * dev, struct comedi_subdevice * s,
struct comedi_insn * insn, unsigned int * data);

/* initialize pci20xxx_private */
/* initialize struct pci20xxx_private */
static int pci20xxx_dio_init(struct comedi_device * dev, struct comedi_subdevice * s)
{

Expand Down

0 comments on commit 0e99a2b

Please sign in to comment.