Skip to content

Commit

Permalink
Staging: comedi: Remove board_struct typedef
Browse files Browse the repository at this point in the history
A more descriptive structure name is probably in order here.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent ecce633 commit 324da11
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/comedi/drivers/cb_pcimdda.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Configuration Options:
* This is straight from skel.c -- I did this in case this source file
* will someday support more than 1 board...
*/
typedef struct board_struct {
struct board_struct {
const char *name;
unsigned short device_id;
int ao_chans;
Expand All @@ -108,15 +108,15 @@ typedef struct board_struct {
int regs_badrindex; /* IO Region for the control, analog output,
and DIO registers */
int reg_sz; /* number of bytes of registers in io region */
} board;
};

enum DIO_METHODS {
DIO_NONE = 0,
DIO_8255,
DIO_INTERNAL /* unimplemented */
};

static const board boards[] = {
static const struct board_struct boards[] = {
{
name: "cb_pcimdda06-16",
device_id:PCI_ID_PCIM_DDA06_16,
Expand All @@ -133,10 +133,10 @@ static const board boards[] = {
/*
* Useful for shorthand access to the particular board structure
*/
#define thisboard ((const board *)dev->board_ptr)
#define thisboard ((const struct board_struct *)dev->board_ptr)

/* Number of boards in boards[] */
#define N_BOARDS (sizeof(boards) / sizeof(board))
#define N_BOARDS (sizeof(boards) / sizeof(struct board_struct))
#define REG_SZ (thisboard->reg_sz)
#define REGS_BADRINDEX (thisboard->regs_badrindex)

Expand Down

0 comments on commit 324da11

Please sign in to comment.