summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorH Hartley Sweeten <hartleys@visionengravers.com>2012-09-11 20:47:52 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-11 21:03:15 (GMT)
commitd4fb0f256028f16de8e33da7007fcf711c817929 (patch)
tree4657c7101ba1e49b1fb75e57ac777ec01030ecbc /drivers
parentefac035ca6eaaf6ca353e730055022cdf03ae7bb (diff)
downloadlinux-d4fb0f256028f16de8e33da7007fcf711c817929.tar.xz
staging: comedi: icp_multi: remove ranglist_ao from boardinfo
This variable is not used by the driver. Remove it. 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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/comedi/drivers/icp_multi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/comedi/drivers/icp_multi.c b/drivers/staging/comedi/drivers/icp_multi.c
index ef2359f..e749622 100644
--- a/drivers/staging/comedi/drivers/icp_multi.c
+++ b/drivers/staging/comedi/drivers/icp_multi.c
@@ -132,7 +132,6 @@ struct boardtype {
char cardtype; /* 0=ICP Multi */
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 */
};
struct icp_multi_private {
@@ -883,7 +882,6 @@ static const struct boardtype boardtypes[] = {
.cardtype = TYPE_ICP_MULTI,
.rangelist_ai = &range_analog,
.rangecode = range_codes_analog,
- .rangelist_ao = &range_analog,
},
};