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

index 2602e7e7b2ded6f372879c948086d2b12daf3528..97ac4157adaf8254ba9276d72ccee0764b6cc477 100644 (file)
@@ -118,12 +118,12 @@ MODULE_DEVICE_TABLE(pci, pc263_pci_table);
    several hardware drivers keep similar information in this structure,
    feel free to suggest moving the variable to the struct comedi_device struct.  */
 #ifdef CONFIG_COMEDI_PCI
-typedef struct {
+struct pc263_private {
        /* PCI device. */
        struct pci_dev *pci_dev;
-} pc263_private;
+};
 
-#define devpriv ((pc263_private *)dev->private)
+#define devpriv ((struct pc263_private *)dev->private)
 #endif /* CONFIG_COMEDI_PCI */
 
 /*
@@ -236,7 +236,7 @@ static int pc263_attach(struct comedi_device * dev, struct comedi_devconfig * it
  * convenient macro defined in comedidev.h.
  */
 #ifdef CONFIG_COMEDI_PCI
-       if ((ret = alloc_private(dev, sizeof(pc263_private))) < 0) {
+       if ((ret = alloc_private(dev, sizeof(struct pc263_private))) < 0) {
                printk(KERN_ERR "comedi%d: error! out of memory!\n",
                        dev->minor);
                return ret;