]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
Staging: comedi: Remove contec_private typedef
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:11:49 +0000 (22:11 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:03 +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/contec_pci_dio.c

index 8c7017471a98dd28b597456976c076b5fa08da8a..123ccb6e6be1b7a404a098d03df659279de3b4fe 100644 (file)
@@ -66,14 +66,14 @@ MODULE_DEVICE_TABLE(pci, contec_pci_table);
 
 #define thisboard ((const struct contec_board *)dev->board_ptr)
 
-typedef struct {
+struct contec_private {
        int data;
 
        struct pci_dev *pci_dev;
 
-} contec_private;
+};
 
-#define devpriv ((contec_private *)dev->private)
+#define devpriv ((struct contec_private *)dev->private)
 
 static int contec_attach(struct comedi_device * dev, struct comedi_devconfig * it);
 static int contec_detach(struct comedi_device * dev);
@@ -106,7 +106,7 @@ static int contec_attach(struct comedi_device * dev, struct comedi_devconfig * i
 
        dev->board_name = thisboard->name;
 
-       if (alloc_private(dev, sizeof(contec_private)) < 0)
+       if (alloc_private(dev, sizeof(struct contec_private)) < 0)
                return -ENOMEM;
 
        if (alloc_subdevices(dev, 2) < 0)