diff options
Diffstat (limited to 'arch/um/include/chan_user.h')
-rw-r--r-- | arch/um/include/chan_user.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/um/include/chan_user.h b/arch/um/include/chan_user.h index 659bb3cac32f..a795547a1dbd 100644 --- a/arch/um/include/chan_user.h +++ b/arch/um/include/chan_user.h | |||
@@ -20,7 +20,7 @@ enum chan_init_pri { INIT_STATIC, INIT_ALL, INIT_ONE }; | |||
20 | 20 | ||
21 | struct chan_ops { | 21 | struct chan_ops { |
22 | char *type; | 22 | char *type; |
23 | void *(*init)(char *, int, struct chan_opts *); | 23 | void *(*init)(char *, int, const struct chan_opts *); |
24 | int (*open)(int, int, int, void *, char **); | 24 | int (*open)(int, int, int, void *, char **); |
25 | void (*close)(int, void *); | 25 | void (*close)(int, void *); |
26 | int (*read)(int, char *, void *); | 26 | int (*read)(int, char *, void *); |
@@ -31,8 +31,8 @@ struct chan_ops { | |||
31 | int winch; | 31 | int winch; |
32 | }; | 32 | }; |
33 | 33 | ||
34 | extern struct chan_ops fd_ops, null_ops, port_ops, pts_ops, pty_ops, tty_ops, | 34 | extern const struct chan_ops fd_ops, null_ops, port_ops, pts_ops, pty_ops, |
35 | xterm_ops; | 35 | tty_ops, xterm_ops; |
36 | 36 | ||
37 | extern void generic_close(int fd, void *unused); | 37 | extern void generic_close(int fd, void *unused); |
38 | extern int generic_read(int fd, char *c_out, void *unused); | 38 | extern int generic_read(int fd, char *c_out, void *unused); |