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 | |
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>
-rw-r--r-- | arch/xtensa/platforms/iss/console.c | 2 | ||||
-rw-r--r-- | drivers/char/bfin_jtag_comm.c | 2 | ||||
-rw-r--r-- | drivers/char/epca.c | 2 | ||||
-rw-r--r-- | drivers/char/pcmcia/ipwireless/tty.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/arch/xtensa/platforms/iss/console.c b/arch/xtensa/platforms/iss/console.c index 4c559cf7da2d..e60a1f57022f 100644 --- a/arch/xtensa/platforms/iss/console.c +++ b/arch/xtensa/platforms/iss/console.c | |||
@@ -196,7 +196,7 @@ static const struct file_operations rs_proc_fops = { | |||
196 | .release = single_release, | 196 | .release = single_release, |
197 | }; | 197 | }; |
198 | 198 | ||
199 | static struct tty_operations serial_ops = { | 199 | static const struct tty_operations serial_ops = { |
200 | .open = rs_open, | 200 | .open = rs_open, |
201 | .close = rs_close, | 201 | .close = rs_close, |
202 | .write = rs_write, | 202 | .write = rs_write, |
diff --git a/drivers/char/bfin_jtag_comm.c b/drivers/char/bfin_jtag_comm.c index 1d7c34c73b20..2628c7415ea8 100644 --- a/drivers/char/bfin_jtag_comm.c +++ b/drivers/char/bfin_jtag_comm.c | |||
@@ -226,7 +226,7 @@ bfin_jc_wait_until_sent(struct tty_struct *tty, int timeout) | |||
226 | } | 226 | } |
227 | } | 227 | } |
228 | 228 | ||
229 | static struct tty_operations bfin_jc_ops = { | 229 | static const struct tty_operations bfin_jc_ops = { |
230 | .open = bfin_jc_open, | 230 | .open = bfin_jc_open, |
231 | .close = bfin_jc_close, | 231 | .close = bfin_jc_close, |
232 | .write = bfin_jc_write, | 232 | .write = bfin_jc_write, |
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 | }; |
diff --git a/drivers/char/pcmcia/ipwireless/tty.c b/drivers/char/pcmcia/ipwireless/tty.c index 674b3ab3587d..2bb7874a6899 100644 --- a/drivers/char/pcmcia/ipwireless/tty.c +++ b/drivers/char/pcmcia/ipwireless/tty.c | |||
@@ -603,7 +603,7 @@ void ipwireless_tty_free(struct ipw_tty *tty) | |||
603 | } | 603 | } |
604 | } | 604 | } |
605 | 605 | ||
606 | static struct tty_operations tty_ops = { | 606 | static const struct tty_operations tty_ops = { |
607 | .open = ipw_open, | 607 | .open = ipw_open, |
608 | .close = ipw_close, | 608 | .close = ipw_close, |
609 | .hangup = ipw_hangup, | 609 | .hangup = ipw_hangup, |