aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/include/chan_kern.h
diff options
context:
space:
mode:
authorJeff Dike <jdike@addtoit.com>2006-01-06 03:18:52 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-06 11:33:45 -0500
commit88890b88742debb97006df264b653d18acdc80d0 (patch)
treef84377762bd7e69b5cdcab1ee7e4406295c898ce /arch/um/include/chan_kern.h
parent0834cc77af6a8a650f803d4a7c3c0f134b366f87 (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/chan_kern.h')
-rw-r--r--arch/um/include/chan_kern.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/um/include/chan_kern.h b/arch/um/include/chan_kern.h
index 9ac06910710..22bf3a73437 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
28extern void chan_interrupt(struct list_head *chans, struct work_struct *task, 27extern 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);
30extern int parse_chan_pair(char *str, struct list_head *chans, int pri, 29extern int parse_chan_pair(char *str, struct list_head *chans, int device,
31 int device, struct chan_opts *opts); 30 struct chan_opts *opts);
32extern int open_chan(struct list_head *chans); 31extern int open_chan(struct list_head *chans);
33extern int write_chan(struct list_head *chans, const char *buf, int len, 32extern int write_chan(struct list_head *chans, const char *buf, int len,
34 int write_irq); 33 int write_irq);