mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 00:47:56 -04:00
staging: comedi: usbduxfast: rename CamelCase 'minSamplPer'
Rename the local variable to fix the checkpatch.pl warning. 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
fbe38a8b35
commit
bbb2d2d66c
@@ -354,7 +354,7 @@ static int usbduxfast_ai_cmdtest(struct comedi_device *dev,
|
||||
{
|
||||
int err = 0;
|
||||
long int steps, tmp;
|
||||
int minSamplPer;
|
||||
int min_sample_period;
|
||||
|
||||
/* Step 1 : check if triggers are trivially valid */
|
||||
|
||||
@@ -396,14 +396,14 @@ static int usbduxfast_ai_cmdtest(struct comedi_device *dev,
|
||||
err |= cfc_check_trigger_arg_is(&cmd->scan_end_arg, cmd->chanlist_len);
|
||||
|
||||
if (cmd->chanlist_len == 1)
|
||||
minSamplPer = 1;
|
||||
min_sample_period = 1;
|
||||
else
|
||||
minSamplPer = MIN_SAMPLING_PERIOD;
|
||||
min_sample_period = MIN_SAMPLING_PERIOD;
|
||||
|
||||
if (cmd->convert_src == TRIG_TIMER) {
|
||||
steps = cmd->convert_arg * 30;
|
||||
if (steps < (minSamplPer * 1000))
|
||||
steps = minSamplPer * 1000;
|
||||
if (steps < (min_sample_period * 1000))
|
||||
steps = min_sample_period * 1000;
|
||||
|
||||
if (steps > (MAX_SAMPLING_PERIOD * 1000))
|
||||
steps = MAX_SAMPLING_PERIOD * 1000;
|
||||
|
||||
Reference in New Issue
Block a user