mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 09:56:25 -04:00
staging: comedi: usbduxsigma: cleanup comedi_lrange table
Rename the table so it has namespace associated with the driver. Tidy up the whitespace of the table. 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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3b081a436b
commit
c2cf0cd923
@@ -157,12 +157,10 @@ Status: testing
|
||||
#define USBDUXSIGMA_PWM_ON_CMD 7
|
||||
#define USBDUXSIGMA_PWM_OFF_CMD 8
|
||||
|
||||
/**************************************************/
|
||||
/* comedi constants */
|
||||
static const struct comedi_lrange range_usbdux_ai_range = { 1, {
|
||||
BIP_RANGE
|
||||
(2.65/2.0)
|
||||
}
|
||||
static const struct comedi_lrange usbduxsigma_ai_range = {
|
||||
1, {
|
||||
BIP_RANGE(2.65 / 2.0)
|
||||
}
|
||||
};
|
||||
|
||||
struct usbduxsigma_private {
|
||||
@@ -1433,7 +1431,7 @@ static int usbduxsigma_attach_common(struct comedi_device *dev)
|
||||
s->n_chan = NUMCHANNELS;
|
||||
s->len_chanlist = NUMCHANNELS;
|
||||
s->maxdata = 0x00ffffff;
|
||||
s->range_table = &range_usbdux_ai_range;
|
||||
s->range_table = &usbduxsigma_ai_range;
|
||||
s->insn_read = usbduxsigma_ai_insn_read;
|
||||
s->do_cmdtest = usbduxsigma_ai_cmdtest;
|
||||
s->do_cmd = usbduxsigma_ai_cmd;
|
||||
|
||||
Reference in New Issue
Block a user