diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-17 09:45:10 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-04-25 14:45:46 -0500 |
commit | 95be0669a353d7f4093876a8fe94474e39c7af9d (patch) | |
tree | 793a7782e0ae2d01a956a31b3aaef16d50d176e0 /hw/display | |
parent | 7c4869761d7f2e0a3f806a5359eea5d2473ec5d5 (diff) | |
download | qemu-95be0669a353d7f4093876a8fe94474e39c7af9d.zip |
console: qom-ify QemuConsole
Just the minimal bits to turn QemuConsoles into Objects.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/display')
-rw-r--r-- | hw/display/xenfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/xenfb.c b/hw/display/xenfb.c index f2eb89fa7f..f0333a0cad 100644 --- a/hw/display/xenfb.c +++ b/hw/display/xenfb.c @@ -987,7 +987,7 @@ wait_more: /* vfb */ fb = container_of(xfb, struct XenFB, c.xendev); - fb->c.con = graphic_console_init(&xenfb_ops, fb); + fb->c.con = graphic_console_init(NULL, &xenfb_ops, fb); fb->have_console = 1; /* vkbd */ |