diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-12-16 03:46:48 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 18:20:05 +0300 |
commit | 28dfef8febe48f59cf1e7596e1992a6a1893ca24 (patch) | |
tree | eb2df6dd75e72db066062950f91c9ab2e8215280 /kernel/relay.c | |
parent | 5116fa2b3a0a3ec625a10445ae45667f094c125b (diff) | |
download | linux-28dfef8febe48f59cf1e7596e1992a6a1893ca24.tar.xz |
const: constify remaining pipe_buf_operations
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/relay.c')
-rw-r--r-- | kernel/relay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/relay.c b/kernel/relay.c index 760c26209a3c..c705a41b4ba3 100644 --- a/kernel/relay.c +++ b/kernel/relay.c @@ -1198,7 +1198,7 @@ static void relay_pipe_buf_release(struct pipe_inode_info *pipe, relay_consume_bytes(rbuf, buf->private); } -static struct pipe_buf_operations relay_pipe_buf_ops = { +static const struct pipe_buf_operations relay_pipe_buf_ops = { .can_merge = 0, .map = generic_pipe_buf_map, .unmap = generic_pipe_buf_unmap, |