diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-06-06 21:21:13 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-07-04 17:42:46 +0200 |
commit | 270327feb2535f74379030e028b96b57fd60ca39 (patch) | |
tree | e4f8930b7c28c32a2d992bd76ed6d6447a8eb16a /hw/display/vga_int.h | |
parent | 712f0cc777dc8abc1f43b8e2a5e65ab3ae563cbd (diff) |
vga: pass owner to vga_common_init
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/display/vga_int.h')
-rw-r--r-- | hw/display/vga_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h index accc9f52e8..bac366cfd7 100644 --- a/hw/display/vga_int.h +++ b/hw/display/vga_int.h @@ -177,7 +177,7 @@ static inline int c6_to_8(int v) return (v << 2) | (b << 1) | b; } -void vga_common_init(VGACommonState *s); +void vga_common_init(VGACommonState *s, Object *obj); void vga_init(VGACommonState *s, Object *obj, MemoryRegion *address_space, MemoryRegion *address_space_io, bool init_vga_ports); MemoryRegion *vga_init_io(VGACommonState *s, |