Skip to content

Commit

Permalink
Staging: comedi: Remove pcl711_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 2e2269f commit e1c8638
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/staging/comedi/drivers/pcl711.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ static struct comedi_driver driver_pcl711 = {

COMEDI_INITCLEANUP(driver_pcl711);

typedef struct {
struct pcl711_private {

int board;
int adchan;
int ntrig;
Expand All @@ -177,9 +178,10 @@ typedef struct {
unsigned int ao_readback[2];
unsigned int divisor1;
unsigned int divisor2;
} pcl711_private;
};


#define devpriv ((pcl711_private *)dev->private)
#define devpriv ((struct pcl711_private *)dev->private)

static irqreturn_t pcl711_interrupt(int irq, void *d PT_REGS_ARG)
{
Expand Down Expand Up @@ -548,7 +550,7 @@ static int pcl711_attach(struct comedi_device * dev, struct comedi_devconfig * i

if ((ret = alloc_subdevices(dev, 4)) < 0)
return ret;
if ((ret = alloc_private(dev, sizeof(pcl711_private))) < 0)
if ((ret = alloc_private(dev, sizeof(struct pcl711_private))) < 0)
return ret;

s = dev->subdevices + 0;
Expand Down

0 comments on commit e1c8638

Please sign in to comment.