Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 126732
b: refs/heads/master
c: 5e08c19
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jan 6, 2009
1 parent 1346d20 commit aea4507
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2ce411b57ec45a97bf0a0af4afe65b9ed5ad5159
refs/heads/master: 5e08c19867cefd9d1a1f07e309338b93439d147a
21 changes: 10 additions & 11 deletions trunk/drivers/staging/comedi/drivers/me_daq.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ static DEFINE_PCI_DEVICE_TABLE(me_pci_table) = {
MODULE_DEVICE_TABLE(pci, me_pci_table);

/* Board specification structure */
typedef struct {
struct me_board {
const char *name; /* driver name */
int device_id;
int ao_channel_nbr; /* DA config */
Expand All @@ -207,9 +207,9 @@ typedef struct {
int ai_resolution_mask;
const comedi_lrange *ai_range_list;
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 -- */
.name = ME_DRIVER_NAME,
Expand Down Expand Up @@ -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 = {
.driver_name = ME_DRIVER_NAME,
Expand All @@ -255,7 +255,7 @@ static comedi_driver me_driver = {
COMEDI_PCI_INITCLEANUP(me_driver, me_pci_table);

/* Private data structure */
typedef struct {
struct me_private_data {
struct pci_dev *pci_device;
void *plx_regbase; /* PLX configuration base address */
void *me_regbase; /* Base address of the Meilhaus card */
Expand All @@ -266,10 +266,9 @@ typedef struct {
unsigned short control_2; /* Mirror of CONTROL_2 register */
unsigned short dac_control; /* Mirror of the DAC_CONTROL register */
int ao_readback[4]; /* Mirror of analog output data */
};

} me_private_data_struct;

#define dev_private ((me_private_data_struct *)dev->private)
#define dev_private ((struct me_private_data *)dev->private)

/*
* ------------------------------------------------------------------
Expand Down Expand Up @@ -636,7 +635,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it)
{
struct pci_dev *pci_device;
comedi_subdevice *subdevice;
me_board_struct *board;
struct me_board *board;
resource_size_t plx_regbase_tmp;
unsigned long plx_regbase_size_tmp;
resource_size_t me_regbase_tmp;
Expand All @@ -647,7 +646,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it)
int result, error, i;

/* 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;

/* Probe the device to determine what device in the series it is. */
Expand Down Expand Up @@ -677,7 +676,7 @@ static int me_attach(comedi_device *dev, comedi_devconfig *it)
}

dev->board_ptr = me_boards + i;
board = (me_board_struct *) dev->
board = (struct me_board *) dev->
board_ptr;
dev_private->pci_device = pci_device;
goto found;
Expand Down

0 comments on commit aea4507

Please sign in to comment.