OSDN Git Service

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

index ad77268..8123335 100644 (file)
@@ -92,12 +92,14 @@ static const pcmda12_board pcmda12_boards[] = {
  */
 #define thisboard ((const pcmda12_board *)dev->board_ptr)
 
-typedef struct {
+struct pcmda12_private {
+
        unsigned int ao_readback[CHANS];
        int simultaneous_xfer_mode;
-} pcmda12_private;
+};
+
 
-#define devpriv ((pcmda12_private *)(dev->private))
+#define devpriv ((struct pcmda12_private *)(dev->private))
 
 /*
  * The struct comedi_driver structure tells the Comedi core module
@@ -174,7 +176,7 @@ static int pcmda12_attach(struct comedi_device * dev, struct comedi_devconfig *
  * Allocate the private structure area.  alloc_private() is a
  * convenient macro defined in comedidev.h.
  */
-       if (alloc_private(dev, sizeof(pcmda12_private)) < 0) {
+       if (alloc_private(dev, sizeof(struct pcmda12_private)) < 0) {
                printk("cannot allocate private data structure\n");
                return -ENOMEM;
        }