Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141596
b: refs/heads/master
c: c7b8bb9
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 32ffac2 commit a918ac6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0c5a144d730a68967dfb3f8163260a142e3282e3
refs/heads/master: c7b8bb98a46e475ae848642cf60160fc7135cd52
8 changes: 4 additions & 4 deletions trunk/drivers/staging/comedi/drivers/das6402.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ static struct comedi_driver driver_das6402 = {

COMEDI_INITCLEANUP(driver_das6402);

typedef struct {
struct das6402_private {
int ai_bytes_to_read;

int das6402_ignoreirq;
} das6402_private;
#define devpriv ((das6402_private *)dev->private)
};
#define devpriv ((struct das6402_private *)dev->private)

static void das6402_ai_fifo_dregs(struct comedi_device * dev, struct comedi_subdevice * s);

Expand Down Expand Up @@ -331,7 +331,7 @@ static int das6402_attach(struct comedi_device * dev, struct comedi_devconfig *
}
dev->irq = irq;

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

if ((ret = alloc_subdevices(dev, 1)) < 0)
Expand Down

0 comments on commit a918ac6

Please sign in to comment.