From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TUMf1-0003S4-FV for qemu-devel@nongnu.org; Fri, 02 Nov 2012 15:12:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TUMf0-0006b3-FE for qemu-devel@nongnu.org; Fri, 02 Nov 2012 15:12:07 -0400 Received: from mail-ob0-f173.google.com ([209.85.214.173]:60510) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TUMf0-0006am-AY for qemu-devel@nongnu.org; Fri, 02 Nov 2012 15:12:06 -0400 Received: by mail-ob0-f173.google.com with SMTP id wc18so3581594obb.4 for ; Fri, 02 Nov 2012 12:12:05 -0700 (PDT) From: Anthony Liguori In-Reply-To: <1351842253-30864-1-git-send-email-kraxel@redhat.com> References: <1351842253-30864-1-git-send-email-kraxel@redhat.com> Date: Fri, 02 Nov 2012 14:12:01 -0500 Message-ID: <871ugbom4e.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH] xenfb: fix build breakage caused by console cleanup series List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann , qemu-devel@nongnu.org Cc: jan.kiszka@web.de Gerd Hoffmann writes: > Console cleanup series renamed dpy_resize and dpy_update all over the > tree, but hw/xenfb.c was forgotten. Update it too so it builds again. > > Reported-by: Jan Kiszka > Signed-off-by: Gerd Hoffmann Applied. Thanks. Regards, Anthony Liguori > --- > hw/xenfb.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/hw/xenfb.c b/hw/xenfb.c > index ef24c33..442a63a 100644 > --- a/hw/xenfb.c > +++ b/hw/xenfb.c > @@ -648,7 +648,7 @@ static void xenfb_guest_copy(struct XenFB *xenfb, int x, int y, int w, int h) > xen_be_printf(&xenfb->c.xendev, 0, "%s: oops: convert %d -> %d bpp?\n", > __FUNCTION__, xenfb->depth, bpp); > > - dpy_update(xenfb->c.ds, x, y, w, h); > + dpy_gfx_update(xenfb->c.ds, x, y, w, h); > } > > #ifdef XENFB_TYPE_REFRESH_PERIOD > @@ -766,7 +766,7 @@ static void xenfb_update(void *opaque) > xen_be_printf(&xenfb->c.xendev, 1, "update: resizing: %dx%d @ %d bpp%s\n", > xenfb->width, xenfb->height, xenfb->depth, > is_buffer_shared(xenfb->c.ds->surface) ? " (shared)" : ""); > - dpy_resize(xenfb->c.ds); > + dpy_gfx_resize(xenfb->c.ds); > xenfb->up_fullscreen = 1; > } > > -- > 1.7.1