Skip to content

Commit

Permalink
Staging: comedi: Remove dio24_private typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent adf3284 commit 344d23e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/staging/comedi/drivers/ni_daq_dio24.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,13 @@ static const dio24_board dio24_boards[] = {
*/
#define thisboard ((const dio24_board *)dev->board_ptr)

typedef struct {
struct dio24_private {

int data; /* number of data points left to be taken */
} dio24_private;
};


#define devpriv ((dio24_private *)dev->private)
#define devpriv ((struct dio24_private *)dev->private)

static struct comedi_driver driver_dio24 = {
driver_name:"ni_daq_dio24",
Expand All @@ -117,7 +119,7 @@ static int dio24_attach(struct comedi_device * dev, struct comedi_devconfig * it
struct pcmcia_device *link;

/* allocate and initialize dev->private */
if (alloc_private(dev, sizeof(dio24_private)) < 0)
if (alloc_private(dev, sizeof(struct dio24_private)) < 0)
return -ENOMEM;

// get base address, irq etc. based on bustype
Expand Down

0 comments on commit 344d23e

Please sign in to comment.