Skip to content

Commit

Permalink
Staging: comedi: Remove ni_660x_board typedef
Browse files Browse the repository at this point in the history
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 251411c commit 5079281
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/comedi/drivers/ni_660x.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,13 +379,13 @@ static const unsigned GPCT_OFFSET[2] = { 0x0, 0x800 }; /* First chip is at base-
0x00, etc. */

/* Board description*/
typedef struct {
struct ni_660x_board {
unsigned short dev_id; /* `lspci` will show you this */
const char *name;
unsigned n_chips; /* total number of TIO chips */
} ni_660x_board;
};

static const ni_660x_board ni_660x_boards[] = {
static const struct ni_660x_board ni_660x_boards[] = {
{
dev_id: 0x2c60,
name: "PCI-6601",
Expand Down Expand Up @@ -439,7 +439,7 @@ static inline ni_660x_private *private(struct comedi_device * dev)
}

/* initialized in ni_660x_find_device() */
static inline const ni_660x_board *board(struct comedi_device * dev)
static inline const struct ni_660x_board *board(struct comedi_device * dev)
{
return dev->board_ptr;
}
Expand Down

0 comments on commit 5079281

Please sign in to comment.