diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2011-01-03 14:05:01 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2011-01-08 01:52:02 +0100 |
commit | 9b4ebf3a2bc8b2129e19388dfabf01be48567ac7 (patch) | |
tree | fca705ceba743a536d10d1821c7108205e3c2fcb | |
parent | de1bfbd379b4301762e06962b5566c2e7fe47f83 (diff) | |
download | ldd3-9b4ebf3a2bc8b2129e19388dfabf01be48567ac7.tar.gz |
scull: pipe: BKL ioctl pushdown API change
-rw-r--r-- | scull/pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scull/pipe.c b/scull/pipe.c index 58603d4..e6aa7ff 100644 --- a/scull/pipe.c +++ b/scull/pipe.c @@ -317,7 +317,7 @@ struct file_operations scull_pipe_fops = { .read = scull_p_read, .write = scull_p_write, .poll = scull_p_poll, - .ioctl = scull_ioctl, + .unlocked_ioctl = scull_ioctl, .open = scull_p_open, .release = scull_p_release, .fasync = scull_p_fasync, |