From patchwork Mon Aug 8 13:08:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Avi Kivity X-Patchwork-Id: 108907 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 7D886B6F75 for ; Mon, 8 Aug 2011 23:09:51 +1000 (EST) Received: from localhost ([::1]:45698 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QqPaU-0002Hr-Kc for incoming@patchwork.ozlabs.org; Mon, 08 Aug 2011 09:09:46 -0400 Received: from eggs.gnu.org ([140.186.70.92]:51893) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QqPaM-0002HM-5M for qemu-devel@nongnu.org; Mon, 08 Aug 2011 09:09:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QqPaK-0002Hw-KN for qemu-devel@nongnu.org; Mon, 08 Aug 2011 09:09:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33735) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QqPaK-0002Hc-B0 for qemu-devel@nongnu.org; Mon, 08 Aug 2011 09:09:36 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p78D9YWD006975 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 8 Aug 2011 09:09:35 -0400 Received: from cleopatra.tlv.redhat.com (cleopatra.tlv.redhat.com [10.35.255.11]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p78D9YEC030031; Mon, 8 Aug 2011 09:09:34 -0400 Received: from s01.tlv.redhat.com (s01.tlv.redhat.com [10.35.255.8]) by cleopatra.tlv.redhat.com (Postfix) with ESMTP id D6094250B43; Mon, 8 Aug 2011 16:09:33 +0300 (IDT) From: Avi Kivity To: Anthony Liguori , qemu-devel@nongnu.org Date: Mon, 8 Aug 2011 16:08:54 +0300 Message-Id: <1312808972-1718-2-git-send-email-avi@redhat.com> In-Reply-To: <1312808972-1718-1-git-send-email-avi@redhat.com> References: <1312808972-1718-1-git-send-email-avi@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: kvm@vger.kernel.org, "Michael S. Tsirkin" Subject: [Qemu-devel] [PATCH v4 01/39] memory: rename PORTIO_END to PORTIO_END_OF_LIST X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org For consistency with other _END_OF_LIST macros. Signed-off-by: Avi Kivity Reviewed-by: Anthony Liguori --- memory.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/memory.h b/memory.h index 4e518b2..da00a3b 100644 --- a/memory.h +++ b/memory.h @@ -133,7 +133,7 @@ struct MemoryRegionPortio { IOPortWriteFunc *write; }; -#define PORTIO_END { } +#define PORTIO_END_OF_LIST() { } /** * memory_region_init: Initialize a memory region