staging: comedi: das1800: use CMDF_ROUND_...
authorIan Abbott <abbotti@mev.co.uk>
Wed, 3 Sep 2014 12:45:51 +0000 (13:45 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Sep 2014 20:50:15 +0000 (13:50 -0700)
Replace use of the `TRIG_ROUND_...` macros with the new names
`CMDF_ROUND_...`.  The numeric values are unchanged.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/das1800.c

index 951292d2c6c52207c7043daa3e7069a43f8a241d..9d0150d44d76bc6b098a92ebac062ef042d9fb0b 100644 (file)
@@ -731,15 +731,15 @@ static unsigned int burst_convert_arg(unsigned int convert_arg, int flags)
                convert_arg = 64000;
 
        /*  the conversion time must be an integral number of microseconds */
-       switch (flags & TRIG_ROUND_MASK) {
-       case TRIG_ROUND_NEAREST:
+       switch (flags & CMDF_ROUND_MASK) {
+       case CMDF_ROUND_NEAREST:
        default:
                micro_sec = (convert_arg + 500) / 1000;
                break;
-       case TRIG_ROUND_DOWN:
+       case CMDF_ROUND_DOWN:
                micro_sec = convert_arg / 1000;
                break;
-       case TRIG_ROUND_UP:
+       case CMDF_ROUND_UP:
                micro_sec = (convert_arg - 1) / 1000 + 1;
                break;
        }
This page took 0.02954 seconds and 5 git commands to generate.