Rename the local variable to fix the checkpatch.pl warning.

Signed-off-by: H Hartley Sweeten <[email protected]>
Cc: Ian Abbott <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
---
 drivers/staging/comedi/drivers/usbduxfast.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/comedi/drivers/usbduxfast.c 
b/drivers/staging/comedi/drivers/usbduxfast.c
index 7ca4fae..7702a3e 100644
--- a/drivers/staging/comedi/drivers/usbduxfast.c
+++ b/drivers/staging/comedi/drivers/usbduxfast.c
@@ -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;
-- 
1.8.1.4

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to