From 0578fa4105aa1e7f25370b13f1b59a3ede646c58 Mon Sep 17 00:00:00 2001 From: Frank Mori Hess Date: Thu, 1 Mar 2001 18:30:24 +0000 Subject: [PATCH] replaced kill_async with KILL_ASYNC from compatability header linux/fs.h so I could compile --- comedi/comedi_fops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comedi/comedi_fops.c b/comedi/comedi_fops.c index 140e2726..1773c2d1 100644 --- a/comedi/comedi_fops.c +++ b/comedi/comedi_fops.c @@ -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{ -- 2.26.2