From: Peter Maydell Date: Mon, 4 Sep 2017 14:21:52 +0000 (+0100) Subject: target/arm: Remove incorrect comment about MPU_CTRL X-Git-Tag: v2.11.0-rc0~138^2~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=59e4972c3fc63d981e8b613ebb3bb01a05848075;p=thirdparty%2Fqemu.git target/arm: Remove incorrect comment about MPU_CTRL Remove the comment that claims that some MPU_CTRL bits are stored in sctlr_el[1]. This has never been true since MPU_CTRL was added in commit 29c483a50607 -- the comment is a leftover from Michael Davidsaver's original implementation, which I modified not to use sctlr_el[1]; I forgot to delete the comment then. Signed-off-by: Peter Maydell Reviewed-by: Edgar E. Iglesias Reviewed-by: Richard Henderson Message-id: 1501692241-23310-7-git-send-email-peter.maydell@linaro.org --- diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 5932ef1e224..2f2aa872f73 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -416,7 +416,7 @@ typedef struct CPUARMState { uint32_t dfsr; /* Debug Fault Status Register */ uint32_t mmfar; /* MemManage Fault Address */ uint32_t bfar; /* BusFault Address */ - unsigned mpu_ctrl; /* MPU_CTRL (some bits kept in sctlr_el[1]) */ + unsigned mpu_ctrl; /* MPU_CTRL */ int exception; } v7m;