diff options
author | Andrew Morton <akpm@osdl.org> | 2006-12-06 23:31:36 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:20 -0500 |
commit | a2ce774096110ccc5c02cbdc05897d005fcd3db8 (patch) | |
tree | 6a6a5830a7e4e789afbfc8258e70e7889af5e7ea /arch/um/drivers | |
parent | 822191a2fa1584a29c3224ab328507adcaeac1ab (diff) |
[PATCH] uml: workqueue build fix
arch/um/drivers/chan_kern.c:643: error: conflicting types for 'chan_interrupt'
arch/um/include/chan_kern.h:31: error: previous declaration of 'chan_interrupt'
Cc: David Howells <dhowells@redhat.com>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/drivers')
-rw-r--r-- | arch/um/drivers/line.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c index 426633e5d6e3..aa3090d05a8f 100644 --- a/arch/um/drivers/line.c +++ b/arch/um/drivers/line.c | |||
@@ -31,9 +31,9 @@ static irqreturn_t line_interrupt(int irq, void *data) | |||
31 | return IRQ_HANDLED; | 31 | return IRQ_HANDLED; |
32 | } | 32 | } |
33 | 33 | ||
34 | static void line_timer_cb(void *arg) | 34 | static void line_timer_cb(struct work_struct *work) |
35 | { | 35 | { |
36 | struct line *line = arg; | 36 | struct line *line = container_of(work, struct line, task.work); |
37 | 37 | ||
38 | if(!line->throttled) | 38 | if(!line->throttled) |
39 | chan_interrupt(&line->chan_list, &line->task, line->tty, | 39 | chan_interrupt(&line->chan_list, &line->task, line->tty, |
@@ -443,7 +443,7 @@ int line_open(struct line *lines, struct tty_struct *tty) | |||
443 | * is registered. | 443 | * is registered. |
444 | */ | 444 | */ |
445 | enable_chan(line); | 445 | enable_chan(line); |
446 | INIT_WORK(&line->task, line_timer_cb, line); | 446 | INIT_DELAYED_WORK(&line->task, line_timer_cb); |
447 | 447 | ||
448 | if(!line->sigio){ | 448 | if(!line->sigio){ |
449 | chan_enable_winch(&line->chan_list, tty); | 449 | chan_enable_winch(&line->chan_list, tty); |