From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: Avi Kivity 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> Subject: [Qemu-devel] [PATCH v4 01/39] memory: rename PORTIO_END to PORTIO_END_OF_LIST List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori , qemu-devel@nongnu.org Cc: kvm@vger.kernel.org, "Michael S. Tsirkin" For consistency with other _END_OF_LIST macros. Signed-off-by: Avi Kivity --- 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 -- 1.7.5.3