Skip to content

Commit

Permalink
Staging: comedi: Remove ni_670x_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 0cb5e8f commit 8ce8a1f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/staging/comedi/drivers/ni_670x.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,16 @@ MODULE_DEVICE_TABLE(pci, ni_670x_pci_table);

#define thisboard ((ni_670x_board *)dev->board_ptr)

typedef struct {
struct ni_670x_private {

struct mite_struct *mite;
int boardtype;
int dio;
unsigned int ao_readback[32];
} ni_670x_private;
};


#define devpriv ((ni_670x_private *)dev->private)
#define devpriv ((struct ni_670x_private *)dev->private)
#define n_ni_670x_boards (sizeof(ni_670x_boards)/sizeof(ni_670x_boards[0]))

static int ni_670x_attach(struct comedi_device * dev, struct comedi_devconfig * it);
Expand Down Expand Up @@ -141,7 +143,7 @@ static int ni_670x_attach(struct comedi_device * dev, struct comedi_devconfig *

printk("comedi%d: ni_670x: ", dev->minor);

if ((ret = alloc_private(dev, sizeof(ni_670x_private))) < 0)
if ((ret = alloc_private(dev, sizeof(struct ni_670x_private))) < 0)
return ret;

ret = ni_670x_find_device(dev, it->options[0], it->options[1]);
Expand Down

0 comments on commit 8ce8a1f

Please sign in to comment.