From: H Hartley Sweeten Date: Thu, 23 May 2013 20:07:35 +0000 (-0700) Subject: staging: comedi: usbduxsigma: cleanup comedi_lrange table X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=c2cf0cd9239010780cc879b5cdfbde89b16232b3;p=deliverable%2Flinux.git 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 Cc: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/usbduxsigma.c b/drivers/staging/comedi/drivers/usbduxsigma.c index 8938305a88ce..63583835f272 100644 --- a/drivers/staging/comedi/drivers/usbduxsigma.c +++ b/drivers/staging/comedi/drivers/usbduxsigma.c @@ -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;