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

index 7918e322d7a244788e2e7db65811eccb0bf57314..ed0a5eb3dd91955b5287d0b527a8a00453419c46 100644 (file)
@@ -211,7 +211,7 @@ MODULE_DEVICE_TABLE(pci, cb_pcidda_pci_table);
 /* this structure is for data unique to this hardware driver.  If
    several hardware drivers keep similar information in this structure,
    feel free to suggest moving the variable to the struct comedi_device struct.  */
-typedef struct {
+struct cb_pcidda_private {
        int data;
 
        /* would be useful for a PCI device */
@@ -224,13 +224,13 @@ typedef struct {
        unsigned int dac_cal1_bits;     // bits last written to da calibration register 1
        unsigned int ao_range[MAX_AO_CHANNELS]; // current range settings for output channels
        u16 eeprom_data[EEPROM_SIZE];   // software copy of board's eeprom
-} cb_pcidda_private;
+};
 
 /*
  * most drivers define the following macro to make it easy to
  * access the private structure.
  */
-#define devpriv ((cb_pcidda_private *)dev->private)
+#define devpriv ((struct cb_pcidda_private *)dev->private)
 
 static int cb_pcidda_attach(struct comedi_device * dev, struct comedi_devconfig * it);
 static int cb_pcidda_detach(struct comedi_device * dev);
@@ -276,7 +276,7 @@ static int cb_pcidda_attach(struct comedi_device * dev, struct comedi_devconfig
 /*
  * Allocate the private structure area.
  */
-       if (alloc_private(dev, sizeof(cb_pcidda_private)) < 0)
+       if (alloc_private(dev, sizeof(struct cb_pcidda_private)) < 0)
                return -ENOMEM;
 
 /*