Staging: comedi: Remove dio200_board typedef

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Bill Pemberton 2009-03-16 22:09:23 -04:00 committed by Greg Kroah-Hartman
parent 55d996391f
commit 3d7a42ef60
1 changed files with 7 additions and 7 deletions

View File

@ -278,15 +278,15 @@ enum dio200_layout {
pc272_layout pc272_layout
}; };
typedef struct dio200_board_struct { struct dio200_board {
const char *name; const char *name;
unsigned short devid; unsigned short devid;
enum dio200_bustype bustype; enum dio200_bustype bustype;
enum dio200_model model; enum dio200_model model;
enum dio200_layout layout; enum dio200_layout layout;
} dio200_board; };
static const dio200_board dio200_boards[] = { static const struct dio200_board dio200_boards[] = {
{ {
name: "pc212e", name: "pc212e",
bustype: isa_bustype, bustype: isa_bustype,
@ -431,8 +431,8 @@ MODULE_DEVICE_TABLE(pci, dio200_pci_table);
/* /*
* Useful for shorthand access to the particular board structure * Useful for shorthand access to the particular board structure
*/ */
#define thisboard ((const dio200_board *)dev->board_ptr) #define thisboard ((const struct dio200_board *)dev->board_ptr)
#define thislayout (&dio200_layouts[((dio200_board *)dev->board_ptr)->layout]) #define thislayout (&dio200_layouts[((struct dio200_board *)dev->board_ptr)->layout])
/* this structure is for data unique to this hardware driver. If /* this structure is for data unique to this hardware driver. If
several hardware drivers keep similar information in this structure, several hardware drivers keep similar information in this structure,
@ -481,8 +481,8 @@ static struct comedi_driver driver_amplc_dio200 = {
attach:dio200_attach, attach:dio200_attach,
detach:dio200_detach, detach:dio200_detach,
board_name:&dio200_boards[0].name, board_name:&dio200_boards[0].name,
offset:sizeof(dio200_board), offset:sizeof(struct dio200_board),
num_names:sizeof(dio200_boards) / sizeof(dio200_board), num_names:sizeof(dio200_boards) / sizeof(struct dio200_board),
}; };
#ifdef CONFIG_COMEDI_PCI #ifdef CONFIG_COMEDI_PCI