summaryrefslogtreecommitdiff
path: root/common/cmd_vboot_twostop.c
diff options
context:
space:
mode:
authorGabe Black <gabeblack@chromium.org>2011-10-19 13:39:31 -0700
committerGabe Black (Do Not Use) <gabeblack@google.com>2011-10-19 14:54:03 -0700
commit27a3cee0d07e2e4a53697379919d1d2ab93743b5 (patch)
tree96534dd83674be5c31ba6cdc28380661836e3356 /common/cmd_vboot_twostop.c
parente95fc9085490220ce9f1392b2b1962b11ba887e1 (diff)
Remove the workaround for F0000-100000 in x86's setup_arch_unused_memory
This region is now marked properly in the e820 table, so it doesn't need to be explicitly preserved by u-boot any more. BUG=None TEST=Built and booted on Stumpy. Verified that the i915 DRM driver was able to find the vbios tables, or at least didn't complain that it couldn't. Change-Id: I2d5953e00d302e68f076f9bdd77a5efbbb93a64a Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: http://gerrit.chromium.org/gerrit/10334 Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/cmd_vboot_twostop.c')
-rw-r--r--common/cmd_vboot_twostop.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/common/cmd_vboot_twostop.c b/common/cmd_vboot_twostop.c
index c72cac66d0..fe1fc54aec 100644
--- a/common/cmd_vboot_twostop.c
+++ b/common/cmd_vboot_twostop.c
@@ -213,12 +213,6 @@ static void setup_arch_unused_memory(memory_wipe_t *wipe,
range->base + range->size);
}
}
- /*
- * FIXME This area isn't marked reserved in the e820 map like it should
- * FIXME be. Once it is, we won't have to exclude it manually and this
- * FIXME code can be removed.
- */
- memory_wipe_sub(wipe, 0xf0000, 0x100000);
}
#else