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

Staging: comedi: Remove pci9111_private_data typedef

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 940579fb
...@@ -339,7 +339,7 @@ COMEDI_PCI_INITCLEANUP(pci9111_driver, pci9111_pci_table); ...@@ -339,7 +339,7 @@ COMEDI_PCI_INITCLEANUP(pci9111_driver, pci9111_pci_table);
// Private data structure // Private data structure
// //
typedef struct { struct pci9111_private_data {
struct pci_dev *pci_device; struct pci_dev *pci_device;
unsigned long io_range; // PCI6503 io range unsigned long io_range; // PCI6503 io range
...@@ -362,9 +362,9 @@ typedef struct { ...@@ -362,9 +362,9 @@ typedef struct {
int is_valid; // Is device valid int is_valid; // Is device valid
short ai_bounce_buffer[2 * PCI9111_FIFO_HALF_SIZE]; short ai_bounce_buffer[2 * PCI9111_FIFO_HALF_SIZE];
} pci9111_private_data_struct; };
#define dev_private ((pci9111_private_data_struct *)dev->private) #define dev_private ((struct pci9111_private_data *)dev->private)
// ------------------------------------------------------------------ // ------------------------------------------------------------------
// //
...@@ -1254,7 +1254,7 @@ static int pci9111_attach(struct comedi_device * dev, struct comedi_devconfig * ...@@ -1254,7 +1254,7 @@ static int pci9111_attach(struct comedi_device * dev, struct comedi_devconfig *
int error, i; int error, i;
const struct pci9111_board *board; const struct pci9111_board *board;
if (alloc_private(dev, sizeof(pci9111_private_data_struct)) < 0) { if (alloc_private(dev, sizeof(struct pci9111_private_data)) < 0) {
return -ENOMEM; return -ENOMEM;
} }
// //
......
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