diff options
author | Avi Kivity <avi@redhat.com> | 2011-12-08 16:00:54 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-12-20 14:14:07 +0200 |
commit | 75c9d6c2f88f5713345b545beec10f0444ebd551 (patch) | |
tree | 99cf744b451641e73935a4bc0dbdf19db165ec05 /hw/pl110.c | |
parent | e2177955a899483b19bd54e547db3b61db95eaf7 (diff) |
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, |