diff options
author | Jeff Dike <jdike@addtoit.com> | 2006-01-06 03:18:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 11:33:45 -0500 |
commit | 88890b88742debb97006df264b653d18acdc80d0 (patch) | |
tree | f84377762bd7e69b5cdcab1ee7e4406295c898ce /arch/um/include | |
parent | 0834cc77af6a8a650f803d4a7c3c0f134b366f87 (diff) |
[PATCH] uml: Remove unneeded structure field
This removes a structure field which turned out to be pointless, and
references to it.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/include')
-rw-r--r-- | arch/um/include/chan_kern.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/um/include/chan_kern.h b/arch/um/include/chan_kern.h index 9ac069107107..22bf3a73437c 100644 --- a/arch/um/include/chan_kern.h +++ b/arch/um/include/chan_kern.h | |||
@@ -20,15 +20,14 @@ struct chan { | |||
20 | unsigned int output:1; | 20 | unsigned int output:1; |
21 | unsigned int opened:1; | 21 | unsigned int opened:1; |
22 | int fd; | 22 | int fd; |
23 | enum chan_init_pri pri; | ||
24 | struct chan_ops *ops; | 23 | struct chan_ops *ops; |
25 | void *data; | 24 | void *data; |
26 | }; | 25 | }; |
27 | 26 | ||
28 | extern void chan_interrupt(struct list_head *chans, struct work_struct *task, | 27 | extern void chan_interrupt(struct list_head *chans, struct work_struct *task, |
29 | struct tty_struct *tty, int irq); | 28 | struct tty_struct *tty, int irq); |
30 | extern int parse_chan_pair(char *str, struct list_head *chans, int pri, | 29 | extern int parse_chan_pair(char *str, struct list_head *chans, int device, |
31 | int device, struct chan_opts *opts); | 30 | struct chan_opts *opts); |
32 | extern int open_chan(struct list_head *chans); | 31 | extern int open_chan(struct list_head *chans); |
33 | extern int write_chan(struct list_head *chans, const char *buf, int len, | 32 | extern int write_chan(struct list_head *chans, const char *buf, int len, |
34 | int write_irq); | 33 | int write_irq); |