Commit 6555be0a authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

Staging: comedi: Remove mpc8260cpm_private typedef

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 16450130
......@@ -38,11 +38,13 @@ It is apparently missing some code.
extern unsigned long mpc8260_dio_reserved[4];
typedef struct {
struct mpc8260cpm_private {
int data;
} mpc8260cpm_private;
#define devpriv ((mpc8260cpm_private *)dev->private)
};
#define devpriv ((struct mpc8260cpm_private *)dev->private)
static int mpc8260cpm_attach(struct comedi_device * dev, struct comedi_devconfig * it);
static int mpc8260cpm_detach(struct comedi_device * dev);
......@@ -71,7 +73,7 @@ static int mpc8260cpm_attach(struct comedi_device * dev, struct comedi_devconfig
dev->board_name = thisboard->name;
if (alloc_private(dev, sizeof(mpc8260cpm_private)) < 0)
if (alloc_private(dev, sizeof(struct mpc8260cpm_private)) < 0)
return -ENOMEM;
if (alloc_subdevices(dev, 4) < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment