From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1ChSzC-0004gu-KI for qemu-devel@nongnu.org; Thu, 23 Dec 2004 08:26:34 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1ChSzB-0004gN-4n for qemu-devel@nongnu.org; Thu, 23 Dec 2004 08:26:33 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1ChSzA-0004gJ-TL for qemu-devel@nongnu.org; Thu, 23 Dec 2004 08:26:32 -0500 Received: from [192.25.206.10] (helo=gluck.debian.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1ChSoQ-0000hn-Uu for qemu-devel@nongnu.org; Thu, 23 Dec 2004 08:15:27 -0500 Date: Thu, 23 Dec 2004 14:15:36 +0100 From: Guillem Jover Message-ID: <20041223131536.GC776@zulo.hadrons.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="UPT3ojh+0CqEDtpF" Content-Disposition: inline Sender: Guillem Jover Subject: [Qemu-devel] [patch] fix typo in openpic timer test Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --UPT3ojh+0CqEDtpF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, This patch comes from warning triaging. It seems a typo in the openpic timer test function. Patch attached. reagrds, guillem --UPT3ojh+0CqEDtpF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="qemu-0.6.0_fix_openpic_timer_test.patch" Package: qemu Version: 0.6.0 Author: Guillem Jover Status: not-applied Description: Fix typo in openpic timer test. diff -Naur qemu-0.6.0.dfsg.2.orig/hw/openpic.c qemu-0.6.0.dfsg.2/hw/openpic.c --- qemu-0.6.0.dfsg.2.orig/hw/openpic.c 2004-07-10 20:20:09.000000000 +0200 +++ qemu-0.6.0.dfsg.2/hw/openpic.c 2004-11-15 08:44:01.000000000 +0100 @@ -629,7 +629,7 @@ break; case 0x10: /* TIBC */ if ((opp->timers[idx].ticc & 0x80000000) != 0 && - (val & 0x800000000) == 0 && + (val & 0x80000000) == 0 && (opp->timers[idx].tibc & 0x80000000) != 0) opp->timers[idx].ticc &= ~0x80000000; opp->timers[idx].tibc = val; --UPT3ojh+0CqEDtpF--