forked from Minki/linux
Staging: comedi: Remove adl_pci7432_private typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
8dca707e14
commit
ddc3dbf4df
@ -51,12 +51,12 @@ static DEFINE_PCI_DEVICE_TABLE(adl_pci7432_pci_table) = {
|
||||
|
||||
MODULE_DEVICE_TABLE(pci, adl_pci7432_pci_table);
|
||||
|
||||
typedef struct {
|
||||
struct adl_pci7432_private {
|
||||
int data;
|
||||
struct pci_dev *pci_dev;
|
||||
} adl_pci7432_private;
|
||||
};
|
||||
|
||||
#define devpriv ((adl_pci7432_private *)dev->private)
|
||||
#define devpriv ((struct adl_pci7432_private *)dev->private)
|
||||
|
||||
static int adl_pci7432_attach(struct comedi_device * dev, struct comedi_devconfig * it);
|
||||
static int adl_pci7432_detach(struct comedi_device * dev);
|
||||
@ -90,7 +90,7 @@ static int adl_pci7432_attach(struct comedi_device * dev, struct comedi_devconfi
|
||||
bus = it->options[0];
|
||||
slot = it->options[1];
|
||||
|
||||
if (alloc_private(dev, sizeof(adl_pci7432_private)) < 0)
|
||||
if (alloc_private(dev, sizeof(struct adl_pci7432_private)) < 0)
|
||||
return -ENOMEM;
|
||||
|
||||
if (alloc_subdevices(dev, 2) < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user