X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fpalacios-graphics-console.c;h=3408fe747da0d95824d664ef88b0998d1a1188a8;hb=b60c22ac6fcdd9df6c5d78fc1f464ac3148c8060;hp=e5d491838f46fb861643f6dcbdcdaf90a4435b9d;hpb=e555306f4bfad36f6f60c7bcadc0a851b2abded7;p=palacios.git diff --git a/linux_module/palacios-graphics-console.c b/linux_module/palacios-graphics-console.c index e5d4918..3408fe7 100644 --- a/linux_module/palacios-graphics-console.c +++ b/linux_module/palacios-graphics-console.c @@ -75,10 +75,10 @@ static v3_graphics_console_t g_open(void * priv_data, return 0; } - gc = get_vm_ext_data(guest, "GFX_CONSOLE_INTERFACE"); + gc = get_vm_ext_data(guest, "GRAPHICS_CONSOLE_INTERFACE"); if (gc == NULL) { - printk("ERROR: Could not locate gfx console data for extension GFX_CONSOLE_INTERFACE\n"); + printk("ERROR: Could not locate gfx console data for extension GRAPHICS_CONSOLE_INTERFACE\n"); return 0; } @@ -366,7 +366,7 @@ static int gfx_console_guest_init(struct v3_guest * guest, void ** vm_data) { static struct linux_ext gfx_cons_ext = { - .name = "GFX_CONSOLE_INTERFACE", + .name = "GRAPHICS_CONSOLE_INTERFACE", .init = gfx_console_init, .deinit = NULL, .guest_init = gfx_console_guest_init,