mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] virtio_console: register hvc0 as console
@ 2010-02-22 10:15 Constantin Baranov
  0 siblings, 0 replies; only message in thread
From: Constantin Baranov @ 2010-02-22 10:15 UTC (permalink / raw)
  To: linux-kernel

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@mimas.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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-02-22 10:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-22 10:15 [PATCH] virtio_console: register hvc0 as console Constantin Baranov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome