]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
Staging: comedi: Remove board_struct typedef
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:11:33 +0000 (22:11 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:03 +0000 (14:54 -0700)
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>
drivers/staging/comedi/drivers/cb_pcimdda.c

index c4600d0c9bc30a5d46aaf292f0e179bdd160abfc..6edbb47d4e33e8d1208c1987e9ce5c15d251bbe5 100644 (file)
@@ -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;
@@ -108,7 +108,7 @@ 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,
@@ -116,7 +116,7 @@ enum DIO_METHODS {
        DIO_INTERNAL            /* unimplemented */
 };
 
-static const board boards[] = {
+static const struct board_struct boards[] = {
        {
              name:     "cb_pcimdda06-16",
              device_id:PCI_ID_PCIM_DDA06_16,
@@ -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)