Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249753
b: refs/heads/master
c: 85a2f34
h: refs/heads/master
i:
  249751: 93da284
v: v3
  • Loading branch information
J. Ali Harlow authored and Greg Kroah-Hartman committed May 18, 2011
1 parent 967d071 commit 28ec841
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 587e500c40aef11163bf09d367b5c3b3aba820cc
refs/heads/master: 85a2f34f4ecd48ce27f8ecc2d58ab66c05d55a9a
4 changes: 2 additions & 2 deletions trunk/drivers/staging/comedi/drivers/vmk80xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1138,15 +1138,15 @@ static int vmk80xx_attach(struct comedi_device *cdev,
s->type = COMEDI_SUBD_DI;
s->subdev_flags = SDF_READABLE | SDF_GROUND;
s->n_chan = dev->board.di_chans;
s->maxdata = (1 << dev->board.di_bits) - 1;
s->maxdata = 1;
s->insn_read = vmk80xx_di_rinsn;

/* Digital output subdevice */
s = cdev->subdevices + VMK80XX_SUBD_DO;
s->type = COMEDI_SUBD_DO;
s->subdev_flags = SDF_WRITEABLE | SDF_GROUND;
s->n_chan = dev->board.do_chans;
s->maxdata = (1 << dev->board.do_bits) - 1;
s->maxdata = 1;
s->insn_write = vmk80xx_do_winsn;

if (dev->board.model == VMK8061_MODEL) {
Expand Down

0 comments on commit 28ec841

Please sign in to comment.