Staging: comedi: rti800: Remove boardtype typedef
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:17:33 +0000 (22:17 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:15 +0000 (14:54 -0700)
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/rti800.c

index 594c5e82211f6fb0e6c44b6e10a7ff2503fcd32c..334ac5773a1333403e3bb310b7fa3c6e00e24e13 100644 (file)
@@ -118,16 +118,18 @@ static const struct comedi_lrange range_rti800_ai_unipolar = { 4, {
        }
 };
 
-typedef struct {
+struct rti800_board {
+
        const char *name;
        int has_ao;
-} boardtype;
-static const boardtype boardtypes[] = {
+};
+
+static const struct rti800_board boardtypes[] = {
        {"rti800", 0},
        {"rti815", 1},
 };
 
-#define this_board ((const boardtype *)dev->board_ptr)
+#define this_board ((const struct rti800_board *)dev->board_ptr)
 
 static int rti800_attach(struct comedi_device * dev, struct comedi_devconfig * it);
 static int rti800_detach(struct comedi_device * dev);
@@ -136,9 +138,9 @@ static struct comedi_driver driver_rti800 = {
       module:THIS_MODULE,
       attach:rti800_attach,
       detach:rti800_detach,
-      num_names:sizeof(boardtypes) / sizeof(boardtype),
+      num_names:sizeof(boardtypes) / sizeof(struct rti800_board),
       board_name:&boardtypes[0].name,
-      offset:sizeof(boardtype),
+      offset:sizeof(struct rti800_board),
 };
 
 COMEDI_INITCLEANUP(driver_rti800);