summaryrefslogtreecommitdiff
path: root/common/fmap.c
diff options
context:
space:
mode:
authorLouis Yung-Chieh Lo <yjlou@chromium.org>2012-08-17 15:46:54 +0800
committerGerrit <chrome-bot@google.com>2012-08-17 01:48:30 -0700
commit9d872b724f3e4e4d49cfb9d4040f8bab609415e5 (patch)
tree8bef9b860fbf01fb81957b2099d9e7cf84ee33f6 /common/fmap.c
parent76619f904df8ed519fac0d46d9c6c3a1956a88c2 (diff)
downloadchrome-ec-9d872b724f3e4e4d49cfb9d4040f8bab609415e5.tar.gz
Snow: WP_RO should be 0x10000 (including pstate).
To reflect the CL 00799d5 that moves the pstate to 0xf000. BUG=chrome-os-partner:12799 TEST=Build in chroot. snow: WP_RO is changed from 0:0xf000 --> 0:0x10000. daisy: WP_RO is unchanged. link: WP_RO is unchanged. Change-Id: I572bae3f624744e60d13a762875211beffc6c516 Signed-off-by: Louis Yung-Chieh Lo <yjlou@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/30670 Reviewed-by: Vic Yang <victoryang@chromium.org>
Diffstat (limited to 'common/fmap.c')
-rw-r--r--common/fmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/fmap.c b/common/fmap.c
index 8035653128..d36cdc1d5b 100644
--- a/common/fmap.c
+++ b/common/fmap.c
@@ -101,11 +101,11 @@ const struct _ec_fmap {
},
{
/* The range for write protection, for factory
- * finalization. Should include (or identical to)
+ * finalization. Should include (may be identical to)
* EC_RO and aligned to hardware specification. */
.area_name = "WP_RO",
- .area_offset = CONFIG_SECTION_RO_OFF,
- .area_size = CONFIG_SECTION_RO_SIZE,
+ .area_offset = CONFIG_SECTION_WP_RO_OFF,
+ .area_size = CONFIG_SECTION_WP_RO_SIZE,
.area_flags = FMAP_AREA_STATIC | FMAP_AREA_RO,
},