From 15d20393ec09b4b1a49c5ad5414ba8459f5ab015 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 16 May 2002 22:15:36 +0000 Subject: [PATCH] Remove dead code --- comedi/comedi_fops.c | 48 -------------------------------------------- 1 file changed, 48 deletions(-) diff --git a/comedi/comedi_fops.c b/comedi/comedi_fops.c index 9c8ed70b..883e6801 100644 --- a/comedi/comedi_fops.c +++ b/comedi/comedi_fops.c @@ -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 - - -- 2.26.2