]> xenbits.xensource.com Git - qemu-xen-4.0-testing.git/commitdiff
add size string parameter to text_console_init - currently ignored by our fork of...
authorIan Jackson <iwj@mariner.uk.xensource.com>
Thu, 29 May 2008 16:38:49 +0000 (17:38 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Thu, 29 May 2008 16:38:49 +0000 (17:38 +0100)
console.c
console.h

index f2bf4e02c51d3060b2fa094757acef16ea83b370..ba5d0deb87bbb034e9a26d3d4b88e55e293c7a0c 100644 (file)
--- a/console.c
+++ b/console.c
@@ -1166,7 +1166,7 @@ void set_color_table(DisplayState *ds)
     }
 }
 
-CharDriverState *text_console_init(DisplayState *ds)
+CharDriverState *text_console_init(DisplayState *ds, const char *p)
 {
     CharDriverState *chr;
     TextConsole *s;
index d3fd91b93a32de71b0e5b29e665a534ca7998cdf..63e9953e61ab5a713c7b3cf72075f4a7f5258c35 100644 (file)
--- a/console.h
+++ b/console.h
@@ -113,7 +113,7 @@ void vga_hw_invalidate(void);
 void vga_hw_screen_dump(const char *filename);
 
 int is_graphic_console(void);
-CharDriverState *text_console_init(DisplayState *ds);
+CharDriverState *text_console_init(DisplayState *ds, const char *p);
 void console_select(unsigned int index);
 void set_color_table(DisplayState *ds);