diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-10-02 16:12:06 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-12-11 18:18:03 -0500 |
commit | 1cceefd3a28e54c0777fe544e1fd32253b2a1de5 (patch) | |
tree | 0f5e7903750cd5c511beb4ae801989308681629f /drivers/char/epca.c | |
parent | e6bdf24cf2992e1775fc095ed021f6b886707c41 (diff) |
tty: const: constify remaining tty_operations
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/char/epca.c')
-rw-r--r-- | drivers/char/epca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/epca.c b/drivers/char/epca.c index dde5134713e2..17b044a71e02 100644 --- a/drivers/char/epca.c +++ b/drivers/char/epca.c | |||
@@ -935,7 +935,7 @@ static int info_open(struct tty_struct *tty, struct file *filp) | |||
935 | return 0; | 935 | return 0; |
936 | } | 936 | } |
937 | 937 | ||
938 | static struct tty_operations info_ops = { | 938 | static const struct tty_operations info_ops = { |
939 | .open = info_open, | 939 | .open = info_open, |
940 | .ioctl = info_ioctl, | 940 | .ioctl = info_ioctl, |
941 | }; | 941 | }; |