[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20100222141550.67fa46f7.const@mimas.ru>
Date: Mon, 22 Feb 2010 14:15:50 +0400
From: Constantin Baranov <const@...as.ru>
To: linux-kernel@...r.kernel.org
Subject: [PATCH] virtio_console: register hvc0 as console
Call hvc_instantiate() when probing virtio device.
A console should be registered much earlier but we
cannot ensure hvc0 existence until PCI and virtio
subsystems initialized. After all, console=hvc0 may
be useful even with this limitation.
Signed-off-by: Constantin Baranov <const@...as.ru>
---
drivers/char/virtio_console.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index a035ae3..cf9cb80 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -219,6 +219,9 @@ static int __devinit virtcons_probe(struct virtio_device *dev)
virtio_cons.notifier_del = notifier_del_vio;
virtio_cons.notifier_hangup = notifier_del_vio;
+ /* Attempt to register hvc0 console. Better late then never. */
+ hvc_instantiate(0, 0, &virtio_cons);
+
/* The first argument of hvc_alloc() is the virtual console number, so
* we use zero. The second argument is the parameter for the
* notification mechanism (like irq number). We currently leave this
--
1.7.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists