OSDN Git Service

Staging: comedi: Remove adq12b_private typedef
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:08:08 +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/adq12b.c

index 242ff78..92f6285 100644 (file)
@@ -146,15 +146,15 @@ static const struct adq12b_board adq12b_boards[] = {
 
 #define thisboard ((const struct adq12b_board *)dev->board_ptr)
 
-typedef struct{
+struct adq12b_private {
         int unipolar;          /* option 2 of comedi_config (1 is iobase) */
         int differential;      /* option 3 of comedi_config */
         int last_channel;
         int last_range;
         unsigned int digital_state;
- }adq12b_private;
+};
 
-#define devpriv ((adq12b_private *)dev->private)
+#define devpriv ((struct adq12b_private *)dev->private)
 
 /*
  * The struct comedi_driver structure tells the Comedi core module
@@ -219,7 +219,7 @@ static int adq12b_attach(struct comedi_device *dev,struct comedi_devconfig *it)
  * Allocate the private structure area.  alloc_private() is a
  * convenient macro defined in comedidev.h.
  */
-        if(alloc_private(dev, sizeof(adq12b_private)) < 0)
+        if(alloc_private(dev, sizeof(struct adq12b_private)) < 0)
           return -ENOMEM;
 
 /* fill in devpriv structure */