]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
Staging: comedi: Remove board_type typedef in aio_aio12_8.c
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:08:56 +0000 (22:08 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:00 +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/aio_aio12_8.c

index c3e8f99ec4e9e089f4fb2f1752ba0a45bbbc24ba..883dd11c0a1581856965d8e97c7766911263c9b4 100644 (file)
@@ -71,16 +71,16 @@ Notes:
 
 #define DAC_ENABLE                     0x18
 
-typedef struct {
+struct aio12_8_boardtype {
        const char *name;
-} board_type;
+};
 
-static const board_type board_types[] = {
+static const struct aio12_8_boardtype board_types[] = {
        {
       name:    "aio_aio12_8"},
 };
 
-#define        thisboard       ((const board_type *) dev->board_ptr)
+#define        thisboard       ((const struct aio12_8_boardtype  *) dev->board_ptr)
 
 typedef struct {
        unsigned int ao_readback[4];
@@ -220,7 +220,7 @@ static struct comedi_driver driver_aio_aio12_8 = {
       detach:aio_aio12_8_detach,
       board_name:&board_types[0].name,
       num_names:1,
-      offset:sizeof(board_type),
+      offset:sizeof(struct aio12_8_boardtype),
 };
 
 COMEDI_INITCLEANUP(driver_aio_aio12_8);