summaryrefslogtreecommitdiffstats
path: root/cryptodev_main.c
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2010-08-17 20:11:44 +0200
committerMiloslav Trmač <mitr@redhat.com>2010-08-24 20:00:48 +0200
commit014124ef6c43f2eadbf07318c03691c5305b6183 (patch)
treebde7c563c04a8464169e6da94d7a5a4ecd3dc328 /cryptodev_main.c
parentaf2c2e1da1a898c8968281824ba8a4d9616670dc (diff)
downloadcryptodev-linux-014124ef6c43f2eadbf07318c03691c5305b6183.tar.gz
cryptodev-linux-014124ef6c43f2eadbf07318c03691c5305b6183.tar.xz
cryptodev-linux-014124ef6c43f2eadbf07318c03691c5305b6183.zip
Drop unnecessary "file *" argument to ncr_ioctl()
Diffstat (limited to 'cryptodev_main.c')
-rw-r--r--cryptodev_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptodev_main.c b/cryptodev_main.c
index a056b44..da75672 100644
--- a/cryptodev_main.c
+++ b/cryptodev_main.c
@@ -828,7 +828,7 @@ cryptodev_ioctl(struct inode *inode, struct file *filp,
return 0;
default:
- return ncr_ioctl(pcr->ncr, filp, cmd, arg_);
+ return ncr_ioctl(pcr->ncr, cmd, arg_);
}
}