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

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

Staging: comedi: Remove cnt_device_private typedef

parent 83101a17
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -82,11 +82,13 @@ static const struct cnt_board_struct cnt_boards[] = {

/*-- device private structure -----------------------------------------------*/

typedef struct {
struct cnt_device_private {

	struct pci_dev *pcidev;
} cnt_device_private;
};


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

static struct comedi_driver cnt_driver = {
      driver_name:CNT_DRIVER_NAME,
@@ -155,7 +157,7 @@ static int cnt_attach(struct comedi_device * dev, struct comedi_devconfig * it)
	int error, i;

	/* allocate device private structure */
	if ((error = alloc_private(dev, sizeof(cnt_device_private))) < 0) {
	if ((error = alloc_private(dev, sizeof(struct cnt_device_private))) < 0) {
		return error;
	}