From c12b25aa7ddb70cefacb119e1ff7573906a7284d Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 17 Jun 2009 07:22:18 +0100 Subject: minios: support secondary guest consoles. Signed-off-by: Stefano Stabellini --- stubdom/grub/mini-os.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stubdom') diff --git a/stubdom/grub/mini-os.c b/stubdom/grub/mini-os.c index 8bf1050215..80330ab923 100644 --- a/stubdom/grub/mini-os.c +++ b/stubdom/grub/mini-os.c @@ -329,7 +329,7 @@ void serial_hw_put (int _c) { char c = _c; - console_print(&c, 1); + console_print(NULL, &c, 1); } int @@ -337,7 +337,7 @@ serial_hw_fetch (void) { char key; - if (!xencons_ring_avail()) + if (!xencons_ring_avail(NULL)) return -1; read(STDIN_FILENO, &key, 1); -- cgit v1.2.3