Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1c8638f authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: Remove pcl711_private typedef

parent 2e2269f9
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -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;
@@ -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)
{
@@ -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;