Skip to content

Commit

Permalink
Staging: comedi: Remove cb_pcimdas_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 fe7858a commit cfee7b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/comedi/drivers/cb_pcimdas.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ See http://www.measurementcomputing.com/PDFManuals/pcim-das1602_16.pdf for more
#define RESID_COUNT_L 14

/* Board description */
typedef struct cb_pcimdas_board_struct {
struct cb_pcimdas_board {
const char *name;
unsigned short device_id;
int ai_se_chans; // Inputs in single-ended mode
Expand All @@ -98,9 +98,9 @@ typedef struct cb_pcimdas_board_struct {
int dio_bits; // number of dio bits
int has_dio; // has DIO
const struct comedi_lrange *ranges;
} cb_pcimdas_board;
};

static const cb_pcimdas_board cb_pcimdas_boards[] = {
static const struct cb_pcimdas_board cb_pcimdas_boards[] = {
{
name: "PCIM-DAS1602/16",
device_id:0x56,
Expand Down Expand Up @@ -134,7 +134,7 @@ MODULE_DEVICE_TABLE(pci, cb_pcimdas_pci_table);
/*
* Useful for shorthand access to the particular board structure
*/
#define thisboard ((const cb_pcimdas_board *)dev->board_ptr)
#define thisboard ((const struct cb_pcimdas_board *)dev->board_ptr)

/* this structure is for data unique to this hardware driver. If
several hardware drivers keep similar information in this structure,
Expand Down

0 comments on commit cfee7b9

Please sign in to comment.