From patchwork Fri Oct 12 11:38:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [8/9] zynq_slcr: Fixed ResetValues enum Date: Fri, 12 Oct 2012 01:38:31 -0000 From: Peter Maydell X-Patchwork-Id: 191099 Message-Id: <1350041912-12595-9-git-send-email-peter.maydell@linaro.org> To: Anthony Liguori Cc: qemu-devel@nongnu.org, Paul Brook From: "Peter A. G. Crosthwaite" There is a gap in the reset region of the address space at offset 0x208. This throws out all these enum values by one when translating them to address offsets. Fixed by putting the corresponding gap in the enum as well. Signed-off-by: Peter A. G. Crosthwaite Reviewed-by: Peter Maydell Signed-off-by: Peter Maydell --- hw/zynq_slcr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/zynq_slcr.c b/hw/zynq_slcr.c index 4f97575..8acba01 100644 --- a/hw/zynq_slcr.c +++ b/hw/zynq_slcr.c @@ -91,7 +91,7 @@ typedef enum { typedef enum { PSS, DDDR, - DMAC, + DMAC = 3, USB, GEM, SDIO,