[PATCH] char/vt: fix compile failure (typo)

From: Nishanth Aravamudan
Date: Thu Jul 14 2005 - 14:31:15 EST


From: Nishanth Aravamudan <nacc@xxxxxxxxxx>

Description: The mod_timer() statement mistakenly has a comma at the end
of the line instead of a semicolon.

Signed-off-by: Nishanth Aravamudan <nacc@xxxxxxxxxx>

---

vt.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

diff -urpN 2.6.13-rc3/drivers/char/vt.c 2.6.13-rc3-timer/drivers/char/vt.c
--- 2.6.13-rc3/drivers/char/vt.c 2005-07-14 12:02:08.000000000 -0700
+++ 2.6.13-rc3-timer/drivers/char/vt.c 2005-07-14 12:02:21.000000000 -0700
@@ -2796,7 +2796,7 @@ void do_blank_screen(int entering_gfx)
return;

if (vesa_off_interval) {
- blank_state = blank_vesa_wait,
+ blank_state = blank_vesa_wait;
mod_timer(&console_timer, jiffies + vesa_off_interval);
}

-
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/