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/drivers/line.c | |
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/drivers/line.c')
-rw-r--r-- | arch/um/drivers/line.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c index 2ee00cbe8f9a..80ade224d740 100644 --- a/arch/um/drivers/line.c +++ b/arch/um/drivers/line.c | |||
@@ -438,7 +438,7 @@ int line_open(struct line *lines, struct tty_struct *tty, | |||
438 | } | 438 | } |
439 | if (list_empty(&line->chan_list)) { | 439 | if (list_empty(&line->chan_list)) { |
440 | err = parse_chan_pair(line->init_str, &line->chan_list, | 440 | err = parse_chan_pair(line->init_str, &line->chan_list, |
441 | line->init_pri, tty->index, opts); | 441 | tty->index, opts); |
442 | if(err) goto out; | 442 | if(err) goto out; |
443 | err = open_chan(&line->chan_list); | 443 | err = open_chan(&line->chan_list); |
444 | if(err) goto out; | 444 | if(err) goto out; |