diff options
author | Avi Kivity | 2011-12-08 15:00:54 +0100 |
---|---|---|
committer | Avi Kivity | 2011-12-20 13:14:07 +0100 |
commit | 75c9d6c2f88f5713345b545beec10f0444ebd551 (patch) | |
tree | 99cf744b451641e73935a4bc0dbdf19db165ec05 /hw/pl110.c | |
parent | memory: introduce memory_region_find() (diff) | |
download | qemu-75c9d6c2f88f5713345b545beec10f0444ebd551.tar.gz qemu-75c9d6c2f88f5713345b545beec10f0444ebd551.tar.xz qemu-75c9d6c2f88f5713345b545beec10f0444ebd551.zip |
framebuffer: drop use of cpu_get_physical_page_desc()
cpu_get_physical_page_desc() is tied into the memory core's
innards, replace it with uses of the API.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/pl110.c')
-rw-r--r-- | hw/pl110.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pl110.c b/hw/pl110.c index cc1eb6d986..303a9bcdbd 100644 --- a/hw/pl110.c +++ b/hw/pl110.c @@ -229,7 +229,7 @@ static void pl110_update_display(void *opaque) } dest_width *= s->cols; first = 0; - framebuffer_update_display(s->ds, + framebuffer_update_display(s->ds, sysbus_address_space(&s->busdev), s->upbase, s->cols, s->rows, src_width, dest_width, 0, s->invalidate, |