mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 15:43:35 -04:00
staging: comedi: icp_multi: rename static variable 'range_analog'
For aesthetics, rename this static variable so it has namespace associated with the driver. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8537a1a4b4
commit
24bc018e73
@@ -80,8 +80,8 @@
|
||||
#define ICP_MULTI_CNTR2 0x14 /* R/W: Counter 2 */
|
||||
#define ICP_MULTI_CNTR3 0x16 /* R/W: Counter 3 */
|
||||
|
||||
/* Define analogue range */
|
||||
static const struct comedi_lrange range_analog = {
|
||||
/* analog input and output have the same range options */
|
||||
static const struct comedi_lrange icp_multi_ranges = {
|
||||
4, {
|
||||
UNI_RANGE(5),
|
||||
UNI_RANGE(10),
|
||||
@@ -475,7 +475,7 @@ static int icp_multi_auto_attach(struct comedi_device *dev,
|
||||
s->n_chan = 16;
|
||||
s->maxdata = 0x0fff;
|
||||
s->len_chanlist = 16;
|
||||
s->range_table = &range_analog;
|
||||
s->range_table = &icp_multi_ranges;
|
||||
s->insn_read = icp_multi_insn_read_ai;
|
||||
|
||||
s = &dev->subdevices[1];
|
||||
@@ -484,7 +484,7 @@ static int icp_multi_auto_attach(struct comedi_device *dev,
|
||||
s->n_chan = 4;
|
||||
s->maxdata = 0x0fff;
|
||||
s->len_chanlist = 4;
|
||||
s->range_table = &range_analog;
|
||||
s->range_table = &icp_multi_ranges;
|
||||
s->insn_write = icp_multi_ao_insn_write;
|
||||
|
||||
ret = comedi_alloc_subdev_readback(s);
|
||||
|
||||
Reference in New Issue
Block a user