Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 317094
b: refs/heads/master
c: 75b9ad9
h: refs/heads/master
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jun 5, 2012
1 parent 9487a76 commit 2866227
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 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: 27b40b89e83aa3db99e392694c46b053ad804bba
refs/heads/master: 75b9ad9e902a51edc90cfcb4dd84c53683554de2
9 changes: 3 additions & 6 deletions trunk/drivers/staging/comedi/drivers/ni_at_ao.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,6 @@ struct atao_board {
int n_ao_chans;
};

#define thisboard ((struct atao_board *)dev->board_ptr)

struct atao_private {

unsigned short cfg1;
Expand Down Expand Up @@ -335,6 +333,7 @@ static int atao_calib_insn_write(struct comedi_device *dev,

static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it)
{
const struct atao_board *board = comedi_board(dev);
struct comedi_subdevice *s;
unsigned long iobase;
int ao_unipolar;
Expand All @@ -352,9 +351,7 @@ static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it)
}
dev->iobase = iobase;

/* dev->board_ptr = atao_probe(dev); */

dev->board_name = thisboard->name;
dev->board_name = board->name;

if (alloc_private(dev, sizeof(struct atao_private)) < 0)
return -ENOMEM;
Expand All @@ -366,7 +363,7 @@ static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it)
/* analog output subdevice */
s->type = COMEDI_SUBD_AO;
s->subdev_flags = SDF_WRITABLE;
s->n_chan = thisboard->n_ao_chans;
s->n_chan = board->n_ao_chans;
s->maxdata = (1 << 12) - 1;
if (ao_unipolar)
s->range_table = &range_unipolar10;
Expand Down

0 comments on commit 2866227

Please sign in to comment.