From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60642) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBhic-00075D-IV for qemu-devel@nongnu.org; Thu, 15 Jan 2015 05:32:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YBhiZ-00081R-8M for qemu-devel@nongnu.org; Thu, 15 Jan 2015 05:32:02 -0500 Received: from mail-wg0-f44.google.com ([74.125.82.44]:42186) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBhiZ-00081E-2e for qemu-devel@nongnu.org; Thu, 15 Jan 2015 05:31:59 -0500 Received: by mail-wg0-f44.google.com with SMTP id y19so14023032wgg.3 for ; Thu, 15 Jan 2015 02:31:58 -0800 (PST) From: Eric Auger Date: Thu, 15 Jan 2015 10:31:39 +0000 Message-Id: <1421317899-32642-5-git-send-email-eric.auger@linaro.org> In-Reply-To: <1421317899-32642-1-git-send-email-eric.auger@linaro.org> References: <1421317899-32642-1-git-send-email-eric.auger@linaro.org> Subject: [Qemu-devel] [PATCH v10 4/4] hw/arm/virt: change indentation in a15memmap List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: eric.auger@st.com, christoffer.dall@linaro.org, qemu-devel@nongnu.org, kim.phillips@freescale.com, zhaoshenglong@huawei.com, a.rigo@virtualopensystems.com, agraf@suse.de, peter.maydell@linaro.org, pbonzini@redhat.com, afaerber@suse.de Cc: Bharat.Bhushan@freescale.com, alex.williamson@redhat.com, patches@linaro.org, kvmarm@lists.cs.columbia.edu, eric.auger@linaro.org Re-indent in a15memmap after VIRT_PLATFORM_BUS introduction Signed-off-by: Eric Auger --- hw/arm/virt.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 66cd553..9d65406 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -126,19 +126,19 @@ typedef struct { */ static const MemMapEntry a15memmap[] = { /* Space up to 0x8000000 is reserved for a boot ROM */ - [VIRT_FLASH] = { 0, 0x08000000 }, - [VIRT_CPUPERIPHS] = { 0x08000000, 0x00020000 }, + [VIRT_FLASH] = { 0, 0x08000000 }, + [VIRT_CPUPERIPHS] = { 0x08000000, 0x00020000 }, /* GIC distributor and CPU interfaces sit inside the CPU peripheral space */ - [VIRT_GIC_DIST] = { 0x08000000, 0x00010000 }, - [VIRT_GIC_CPU] = { 0x08010000, 0x00010000 }, - [VIRT_UART] = { 0x09000000, 0x00001000 }, - [VIRT_RTC] = { 0x09010000, 0x00001000 }, - [VIRT_FW_CFG] = { 0x09020000, 0x0000000a }, + [VIRT_GIC_DIST] = { 0x08000000, 0x00010000 }, + [VIRT_GIC_CPU] = { 0x08010000, 0x00010000 }, + [VIRT_UART] = { 0x09000000, 0x00001000 }, + [VIRT_RTC] = { 0x09010000, 0x00001000 }, + [VIRT_FW_CFG] = { 0x09020000, 0x0000000a }, [VIRT_PLATFORM_BUS] = { 0x09400000, 0x00400000 }, - [VIRT_MMIO] = { 0x0a000000, 0x00000200 }, + [VIRT_MMIO] = { 0x0a000000, 0x00000200 }, /* ...repeating for a total of NUM_VIRTIO_TRANSPORTS, each of that size */ /* 0x10000000 .. 0x40000000 reserved for PCI */ - [VIRT_MEM] = { 0x40000000, 30ULL * 1024 * 1024 * 1024 }, + [VIRT_MEM] = { 0x40000000, 30ULL * 1024 * 1024 * 1024 }, }; static const int a15irqmap[] = { -- 1.8.3.2