Commit 5e08c198 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: comedi: me_daq: remove typedefs

This removes the typedefs from the me_daq driver.

Cc: Michael Hillmann <hillmann@syscongroup.de>
Cc: David Schleef <ds@schleef.org>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 2ce411b5
...@@ -195,7 +195,7 @@ static DEFINE_PCI_DEVICE_TABLE(me_pci_table) = { ...@@ -195,7 +195,7 @@ static DEFINE_PCI_DEVICE_TABLE(me_pci_table) = {
MODULE_DEVICE_TABLE(pci, me_pci_table); MODULE_DEVICE_TABLE(pci, me_pci_table);
/* Board specification structure */ /* Board specification structure */
typedef struct { struct me_board {
const char *name; /* driver name */ const char *name; /* driver name */
int device_id; int device_id;
int ao_channel_nbr; /* DA config */ int ao_channel_nbr; /* DA config */
...@@ -207,9 +207,9 @@ typedef struct { ...@@ -207,9 +207,9 @@ typedef struct {
int ai_resolution_mask; int ai_resolution_mask;
const comedi_lrange *ai_range_list; const comedi_lrange *ai_range_list;
int dio_channel_nbr; /* DIO config */ int dio_channel_nbr; /* DIO config */
} me_board_struct; };
static const me_board_struct me_boards[] = { static const struct me_board me_boards[] = {
{ {
/* -- ME-2600i -- */ /* -- ME-2600i -- */
.name = ME_DRIVER_NAME, .name = ME_DRIVER_NAME,
...@@ -244,7 +244,7 @@ static const me_board_struct me_boards[] = { ...@@ -244,7 +244,7 @@ static const me_board_struct me_boards[] = {
} }
}; };
#define me_board_nbr (sizeof(me_boards)/sizeof(me_board_struct)) #define me_board_nbr (sizeof(me_boards)/sizeof(struct me_board))
static comedi_driver me_driver = { static comedi_driver me_driver = {
.driver_name = ME_DRIVER_NAME, .driver_name = ME_DRIVER_NAME,
...@@ -255,7 +255,7 @@ static comedi_driver me_driver = { ...@@ -255,7 +255,7 @@ static comedi_driver me_driver = {
COMEDI_PCI_INITCLEANUP(me_driver, me_pci_table); COMEDI_PCI_INITCLEANUP(me_driver, me_pci_table);
/* Private data structure */ /* Private data structure */
typedef struct { struct me_private_data {
struct pci_dev *pci_device; struct pci_dev *pci_device;
void *plx_regbase; /* PLX configuration base address */ void *plx_regbase; /* PLX configuration base address */
void *me_regbase; /* Base address of the Meilhaus card */ void *me_regbase; /* Base address of the Meilhaus card */
...@@ -266,10 +266,9 @@ typedef struct { ...@@ -266,10 +266,9 @@ typedef struct {
unsigned short control_2; /* Mirror of CONTROL_2 register */ unsigned short control_2; /* Mirror of CONTROL_2 register */
unsigned short dac_control; /* Mirror of the DAC_CONTROL register */ unsigned short dac_control; /* Mirror of the DAC_CONTROL register */
int ao_readback[4]; /* Mirror of analog output data */ int ao_readback[4]; /* Mirror of analog output data */
};
} me_private_data_struct; #define dev_private ((struct me_private_data *)dev->private)
#define dev_private ((me_private_data_struct *)dev->private)
/* /*
* ------------------------------------------------------------------ * ------------------------------------------------------------------
...@@ -636,7 +635,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it) ...@@ -636,7 +635,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it)
{ {
struct pci_dev *pci_device; struct pci_dev *pci_device;
comedi_subdevice *subdevice; comedi_subdevice *subdevice;
me_board_struct *board; struct me_board *board;
resource_size_t plx_regbase_tmp; resource_size_t plx_regbase_tmp;
unsigned long plx_regbase_size_tmp; unsigned long plx_regbase_size_tmp;
resource_size_t me_regbase_tmp; resource_size_t me_regbase_tmp;
...@@ -647,7 +646,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it) ...@@ -647,7 +646,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it)
int result, error, i; int result, error, i;
/* Allocate private memory */ /* Allocate private memory */
if (alloc_private(dev, sizeof(me_private_data_struct)) < 0) if (alloc_private(dev, sizeof(struct me_private_data)) < 0)
return -ENOMEM; return -ENOMEM;
/* Probe the device to determine what device in the series it is. */ /* Probe the device to determine what device in the series it is. */
...@@ -677,7 +676,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it) ...@@ -677,7 +676,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it)
} }
dev->board_ptr = me_boards + i; dev->board_ptr = me_boards + i;
board = (me_board_struct *) dev-> board = (struct me_board *) dev->
board_ptr; board_ptr;
dev_private->pci_device = pci_device; dev_private->pci_device = pci_device;
goto found; goto found;
......
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