diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-13 14:04:18 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-16 09:03:49 +0200 |
commit | 380cd056ec0e7fc8bbd553cdcb061d3ca612bb82 (patch) | |
tree | e8097697817029ca6d545b8f68ba9761fb0f8164 /hw/display/ssd0303.c | |
parent | 27be55872dd747c733a42a3d90864d9f59272d26 (diff) | |
download | qemu-380cd056ec0e7fc8bbd553cdcb061d3ca612bb82.tar.gz qemu-380cd056ec0e7fc8bbd553cdcb061d3ca612bb82.tar.bz2 qemu-380cd056ec0e7fc8bbd553cdcb061d3ca612bb82.zip |
console: add GraphicHwOps
Pass a single GraphicHwOps struct pointer to graphic_console_init,
instead of a bunch of function pointers.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/display/ssd0303.c')
-rw-r--r-- | hw/display/ssd0303.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hw/display/ssd0303.c b/hw/display/ssd0303.c index 9b6810f2c5..3d7ebbe6e2 100644 --- a/hw/display/ssd0303.c +++ b/hw/display/ssd0303.c @@ -284,13 +284,16 @@ static const VMStateDescription vmstate_ssd0303 = { } }; +static const GraphicHwOps ssd0303_ops = { + .invalidate = ssd0303_invalidate_display, + .gfx_update = ssd0303_update_display, +}; + static int ssd0303_init(I2CSlave *i2c) { ssd0303_state *s = FROM_I2C_SLAVE(ssd0303_state, i2c); - s->con = graphic_console_init(ssd0303_update_display, - ssd0303_invalidate_display, - NULL, s); + s->con = graphic_console_init(&ssd0303_ops, s); qemu_console_resize(s->con, 96 * MAGNIFY, 16 * MAGNIFY); return 0; } |