replaced kill_async with KILL_ASYNC from compatability header linux/fs.h so I could...
authorFrank Mori Hess <fmhess@speakeasy.net>
Thu, 1 Mar 2001 18:30:24 +0000 (18:30 +0000)
committerFrank Mori Hess <fmhess@speakeasy.net>
Thu, 1 Mar 2001 18:30:24 +0000 (18:30 +0000)
comedi/comedi_fops.c

index 140e2726eedb4d09fd27518bd39896df893359ef..1773c2d1aae378fdecf165ddd59a13913f1e36db 100644 (file)
@@ -1961,11 +1961,11 @@ void comedi_event(comedi_device *dev,comedi_subdevice *s,unsigned int mask)
                        }else{
                                if(s==dev->read_subdev){
                                        wake_up_interruptible(&dev->read_wait);
-                                       kill_fasync(&dev->async_queue, SIGIO, POLL_IN);
+                                       KILL_FASYNC(dev->async_queue, SIGIO, POLL_IN);
                                }
                                if(s==dev->write_subdev){
                                        wake_up_interruptible(&dev->write_wait);
-                                       kill_fasync(&dev->async_queue, SIGIO, POLL_OUT);
+                                       KILL_FASYNC(dev->async_queue, SIGIO, POLL_OUT);
                                }
                        }
                }else{