Remove dead code
authorDavid Schleef <ds@schleef.org>
Thu, 16 May 2002 22:15:36 +0000 (22:15 +0000)
committerDavid Schleef <ds@schleef.org>
Thu, 16 May 2002 22:15:36 +0000 (22:15 +0000)
comedi/comedi_fops.c

index 9c8ed70ba57bce2afb583ec360fa03b72f8e839b..883e680186fee5978aa9f8b2b956ff0c82c384f4 100644 (file)
@@ -1846,51 +1846,3 @@ void comedi_event(comedi_device *dev,comedi_subdevice *s,unsigned int mask)
        }
 }
 
-#if 0
-/*
-   this function should be called by your interrupt routine
-   at the end of acquisition
- */
-void comedi_done(comedi_device *dev,comedi_subdevice *s)
-{
-       comedi_event(dev,s,COMEDI_CB_EOA);
-}
-
-/*
-   this function should be called by your interrupt routine
-   at errors causing termination of acquisition
- */
-void comedi_error_done(comedi_device *dev,comedi_subdevice *s)
-{
-       comedi_event(dev,s,COMEDI_CB_ERROR|COMEDI_CB_EOA);
-}
-
-/*
-   this function should be called by your interrupt routine
-   at convenient block sizes
- */
-void comedi_bufcheck(comedi_device *dev,comedi_subdevice *s)
-{
-       comedi_event(dev,s,COMEDI_CB_BLOCK);
-}
-
-/*
-   this function should be called by your interrupt routine
-   at end-of-scan events
- */
-void comedi_eos(comedi_device *dev,comedi_subdevice *s)
-{
-       comedi_event(dev,s,COMEDI_CB_EOS);
-}
-
-/*
-   this function should be called by your interrupt routine
-   at buffer rollover events
- */
-void comedi_eobuf(comedi_device *dev,comedi_subdevice *s)
-{
-       comedi_event(dev,s,COMEDI_CB_EOBUF);
-}
-#endif
-
-