diff options
| author | H Hartley Sweeten <hartleys@visionengravers.com> | 2012-09-11 13:47:36 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-11 14:01:56 -0700 |
| commit | efac035ca6eaaf6ca353e730055022cdf03ae7bb (patch) | |
| tree | 9af29a7a8b2369d7605195a8520100d2ae2f1891 | |
| parent | 68b82e0954c3a80b230722f5315f7d41eca3d0a2 (diff) | |
staging: comedi: icp_multi: remove ai_maxdata from boardinfo
The analog inputs of this board always have 12-bit resolution.
Remove the boardinfo and just open-code the value.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/comedi/drivers/icp_multi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/comedi/drivers/icp_multi.c b/drivers/staging/comedi/drivers/icp_multi.c index 3a28f914538f..ef2359f148db 100644 --- a/drivers/staging/comedi/drivers/icp_multi.c +++ b/drivers/staging/comedi/drivers/icp_multi.c @@ -130,7 +130,6 @@ struct boardtype { int iorange; /* I/O range len */ char have_irq; /* 1=card support IRQ */ char cardtype; /* 0=ICP Multi */ - int ai_maxdata; /* resolution of A/D */ const struct comedi_lrange *rangelist_ai; /* rangelist for A/D */ const char *rangecode; /* range codes for programming */ const struct comedi_lrange *rangelist_ao; /* rangelist for D/A */ @@ -804,7 +803,7 @@ static int icp_multi_attach(struct comedi_device *dev, s->type = COMEDI_SUBD_AI; s->subdev_flags = SDF_READABLE | SDF_COMMON | SDF_GROUND | SDF_DIFF; s->n_chan = 16; - s->maxdata = this_board->ai_maxdata; + s->maxdata = 0x0fff; s->len_chanlist = 16; s->range_table = this_board->rangelist_ai; s->insn_read = icp_multi_insn_read_ai; @@ -882,7 +881,6 @@ static const struct boardtype boardtypes[] = { .iorange = IORANGE_ICP_MULTI, .have_irq = 1, .cardtype = TYPE_ICP_MULTI, - .ai_maxdata = 0x0fff, .rangelist_ai = &range_analog, .rangecode = range_codes_analog, .rangelist_ao = &range_analog, |
