staging: comedi: amplc_pci230: use CMDF_WAKE_EOS
authorIan Abbott <abbotti@mev.co.uk>
Wed, 3 Sep 2014 12:45:34 +0000 (13:45 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Sep 2014 20:50:13 +0000 (13:50 -0700)
Replace use of `TRIG_WAKE_EOS` command flag with the new name
`CMDF_WAKE_EOS`.  The numeric value is 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/amplc_pci230.c

index 66e7a4743f00e512e9abb4748dfc2f199120d161..6642744b7871015b2ee48d38b931fe8d5a6804aa 100644 (file)
@@ -1765,7 +1765,7 @@ static void pci230_ai_update_fifo_trigger_level(struct comedi_device *dev,
        unsigned short triglev;
        unsigned short adccon;
 
-       if (cmd->flags & TRIG_WAKE_EOS)
+       if (cmd->flags & CMDF_WAKE_EOS)
                wake = scanlen - devpriv->ai_scan_pos;
        else if (cmd->stop_src != TRIG_COUNT ||
                 devpriv->ai_scan_count >= PCI230_ADC_FIFOLEVEL_HALFFULL ||
This page took 0.028377 seconds and 5 git commands to generate.