[Patch] um: fix a build error

From: WANG Cong
Date: Mon Jul 21 2008 - 12:56:14 EST



Fixed this build error:

/home/wangcong/Projects/linux-2.6/arch/um/drivers/line.c: In function
âline_write_interruptâ:
/home/wangcong/Projects/linux-2.6/arch/um/drivers/line.c:366: error:
âstruct tty_ldiscâ has no member named âwrite_wakeupâ
/home/wangcong/Projects/linux-2.6/arch/um/drivers/line.c:367: error:
âstruct tty_ldiscâ has no member named âwrite_wakeupâ
make[2]: *** [arch/um/drivers/line.o] Error 1
make[1]: *** [arch/um/drivers] Error 2
make: *** [sub-make] Error 2

Sigend-off-by: WANG Cong <wangcong@xxxxxxxxx>
Cc: jdike@xxxxxxxxxxx

---
diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c
index 5047490..c872dad 100644
--- a/arch/um/drivers/line.c
+++ b/arch/um/drivers/line.c
@@ -363,8 +363,8 @@ static irqreturn_t line_write_interrupt(int irq, void *data)
return IRQ_NONE;

if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags) &&
- (tty->ldisc.write_wakeup != NULL))
- (tty->ldisc.write_wakeup)(tty);
+ (tty->ldisc.ops->write_wakeup != NULL))
+ (tty->ldisc.ops->write_wakeup)(tty);

/*
* BLOCKING mode
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/