Staging: comedi: Remove config_t typedef
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:19:26 +0000 (22:19 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:11 +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/serial2002.c

index 91fc281c1e9f34dff3d032765e728d8fbb0c17b9..77c2345330056209b60cbb67242a4dc971d8c7f4 100644 (file)
@@ -401,16 +401,18 @@ static void serial_2002_open(struct comedi_device * dev)
                printk("serial_2002: file open error = %ld\n",
                        PTR_ERR(devpriv->tty));
        } else {
-               typedef struct {
+               struct config_t {
+
                        int kind;
                        int bits;
                        int min;
                        int max;
-               } config_t;
-               config_t dig_in_config[32];
-               config_t dig_out_config[32];
-               config_t chan_in_config[32];
-               config_t chan_out_config[32];
+               };
+
+               struct config_t dig_in_config[32];
+               struct config_t dig_out_config[32];
+               struct config_t chan_in_config[32];
+               struct config_t chan_out_config[32];
                int i;
 
                for (i = 0; i < 32; i++) {
@@ -443,7 +445,7 @@ static void serial_2002_open(struct comedi_device * dev)
                                break;
                        } else {
                                int command, channel, kind;
-                               config_t *cur_config = 0;
+                               struct config_t *cur_config = 0;
 
                                channel = data.value & 0x1f;
                                kind = (data.value >> 5) & 0x7;
@@ -554,7 +556,7 @@ static void serial_2002_open(struct comedi_device * dev)
                }
                for (i = 0; i <= 4; i++) {
                        // Fill in subdev data
-                       config_t *c;
+                       struct config_t *c;
                        unsigned char *mapping = 0;
                        struct serial2002_range_table_t *range = 0;
                        int kind = 0;