summaryrefslogtreecommitdiffstats
path: root/sculld
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2011-01-03 14:50:37 +0100
committerJavier Martinez Canillas <martinez.javier@gmail.com>2011-01-03 14:50:37 +0100
commit5f027b40d7402b782e4f26bc98ae635d0de8d316 (patch)
tree3d9a4d39951b7c0090c7a747ba3ecd1575f319f4 /sculld
parentf440c4949ebc5ed0fea88cef5805419659daa8b5 (diff)
downloadldd3-5f027b40d7402b782e4f26bc98ae635d0de8d316.tar.gz
sculld: BLK ioctl pushdown API change
Diffstat (limited to 'sculld')
-rw-r--r--sculld/main.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sculld/main.c b/sculld/main.c
index 1039d84..8a6ecb1 100644
--- a/sculld/main.c
+++ b/sculld/main.c
@@ -279,8 +279,7 @@ ssize_t sculld_write (struct file *filp, const char __user *buf, size_t count,
* The ioctl() implementation
*/
-int sculld_ioctl (struct inode *inode, struct file *filp,
- unsigned int cmd, unsigned long arg)
+long sculld_ioctl (struct file *filp, unsigned int cmd, unsigned long arg)
{
int err = 0, ret = 0, tmp;
@@ -488,7 +487,7 @@ struct file_operations sculld_fops = {
.llseek = sculld_llseek,
.read = sculld_read,
.write = sculld_write,
- .ioctl = sculld_ioctl,
+ .unlocked_ioctl = sculld_ioctl,
.mmap = sculld_mmap,
.open = sculld_open,
.release = sculld_release,