]> Pileus Git - ~andy/linux/commitdiff
mptctl: don't wank with fasync in ->release()
authorAl Viro <viro@zeniv.linux.org.uk>
Mon, 15 Apr 2013 14:28:20 +0000 (10:28 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Mon, 29 Apr 2013 19:41:44 +0000 (15:41 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
drivers/message/fusion/mptctl.c

index b383b6961e59549c8075b197d89adb6417b252cf..dcc8385adeb3b8b830a58cfad62f19604122a52b 100644 (file)
@@ -596,13 +596,6 @@ mptctl_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply)
        return 1;
 }
 
-static int
-mptctl_release(struct inode *inode, struct file *filep)
-{
-       fasync_helper(-1, filep, 0, &async_queue);
-       return 0;
-}
-
 static int
 mptctl_fasync(int fd, struct file *filep, int mode)
 {
@@ -2822,7 +2815,6 @@ static const struct file_operations mptctl_fops = {
        .llseek =       no_llseek,
        .fasync =       mptctl_fasync,
        .unlocked_ioctl = mptctl_ioctl,
-       .release =      mptctl_release,
 #ifdef CONFIG_COMPAT
        .compat_ioctl = compat_mpctl_ioctl,
 #endif