projects
/
comedi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2aaf60
)
replaced kill_async with KILL_ASYNC from compatability header linux/fs.h so I could...
author
Frank Mori Hess
<fmhess@speakeasy.net>
Thu, 1 Mar 2001 18:30:24 +0000
(18:30 +0000)
committer
Frank Mori Hess
<fmhess@speakeasy.net>
Thu, 1 Mar 2001 18:30:24 +0000
(18:30 +0000)
comedi/comedi_fops.c
patch
|
blob
|
history
diff --git
a/comedi/comedi_fops.c
b/comedi/comedi_fops.c
index 140e2726eedb4d09fd27518bd39896df893359ef..1773c2d1aae378fdecf165ddd59a13913f1e36db 100644
(file)
--- 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{