summaryrefslogtreecommitdiffstats
path: root/hw/integratorcp.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2012-01-06 18:58:27 +0000
committerAndrzej Zaborowski <andrew.zaborowski@intel.com>2012-01-10 18:39:57 +0100
commit4753dea8c1311d05781cb66c45e540f94cdabd54 (patch)
tree6a73301d67cd3c675d0552e033fe9390eebef930 /hw/integratorcp.c
parent14763ec87340322eba5fe4be35a2c8790c0d1b94 (diff)
downloadhqemu-4753dea8c1311d05781cb66c45e540f94cdabd54.zip
hqemu-4753dea8c1311d05781cb66c45e540f94cdabd54.tar.gz
hw/integratorcp: Fix sense of REMAP bit
Fix the sense of the REMAP bit: 0 should mean "map flash", 1 should mean "map RAM". Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com>
Diffstat (limited to 'hw/integratorcp.c')
-rw-r--r--hw/integratorcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/integratorcp.c b/hw/integratorcp.c
index c8f3955..d9d8da3 100644
--- a/hw/integratorcp.c
+++ b/hw/integratorcp.c
@@ -112,7 +112,7 @@ static uint64_t integratorcm_read(void *opaque, target_phys_addr_t offset,
static void integratorcm_do_remap(integratorcm_state *s, int flash)
{
- if (flash) {
+ if (!flash) {
if (s->flash_mapped) {
sysbus_del_memory(&s->busdev, &s->flash);
s->flash_mapped = false;
OpenPOWER on IntegriCloud