Skip to content

Commit

Permalink
Staging: comedi: Remove dt2815_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 ca6f10c commit 0b011a6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/staging/comedi/drivers/dt2815.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,14 @@ COMEDI_INITCLEANUP(driver_dt2815);

static void dt2815_free_resources(struct comedi_device * dev);

typedef struct {
struct dt2815_private {

const struct comedi_lrange *range_type_list[8];
unsigned int ao_readback[8];
} dt2815_private;
};


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

static int dt2815_wait_for_status(struct comedi_device * dev, int status)
{
Expand Down Expand Up @@ -196,7 +198,7 @@ static int dt2815_attach(struct comedi_device * dev, struct comedi_devconfig * i

if (alloc_subdevices(dev, 1) < 0)
return -ENOMEM;
if (alloc_private(dev, sizeof(dt2815_private)) < 0)
if (alloc_private(dev, sizeof(struct dt2815_private)) < 0)
return -ENOMEM;

s = dev->subdevices;
Expand Down

0 comments on commit 0b011a6

Please sign in to comment.