From patchwork Thu Mar 10 11:54:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 86264 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id EBC8B1007D1 for ; Thu, 10 Mar 2011 23:48:08 +1100 (EST) Received: from localhost ([127.0.0.1]:35375 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxfHi-00011v-86 for incoming@patchwork.ozlabs.org; Thu, 10 Mar 2011 07:48:06 -0500 Received: from [140.186.70.92] (port=60907 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxeS3-0003E2-S8 for qemu-devel@nongnu.org; Thu, 10 Mar 2011 06:54:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PxeS1-0000Xa-9y for qemu-devel@nongnu.org; Thu, 10 Mar 2011 06:54:42 -0500 Received: from mx1.redhat.com ([209.132.183.28]:63445) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PxeS1-0000XN-11 for qemu-devel@nongnu.org; Thu, 10 Mar 2011 06:54:41 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p2ABseFx028250 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 10 Mar 2011 06:54:40 -0500 Received: from trasno.mitica ([10.3.113.11]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p2ABsabx011069; Thu, 10 Mar 2011 06:54:39 -0500 From: Juan Quintela To: qemu-devel@nongnu.org Date: Thu, 10 Mar 2011 12:54:19 +0100 Message-Id: <45925a97c337a2c10ca546adb090e2f0ea0b6649.1299757795.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 02/13] pxa2xx_lcd: up field is used as a bool and migrated as an uint8_t X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Juan Quintela --- hw/pxa2xx_lcd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/pxa2xx_lcd.c b/hw/pxa2xx_lcd.c index 9a19347..55e95be 100644 --- a/hw/pxa2xx_lcd.c +++ b/hw/pxa2xx_lcd.c @@ -17,7 +17,7 @@ struct DMAChannel { target_phys_addr_t branch; - int up; + uint8_t up; uint8_t palette[1024]; uint8_t pbuffer[1024]; void (*redraw)(PXA2xxLCDState *s, target_phys_addr_t addr,