diff options
author | Martin Roth <martinroth@google.com> | 2015-08-24 16:42:31 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-11-18 23:22:11 +0100 |
commit | 355dfda3f010ca57195ca47d02b346586e946cc3 (patch) | |
tree | 1be61b2c81a2a1937e1e834817e1412ab70b3425 /src/Kconfig | |
parent | 8420ad4b41c52d38acd56e4bfe447ce0f0a1721e (diff) |
Remove dependency for HAS_PRECBMEM_TIMESTAMP_REGION
HAS_PRECBMEM_TIMESTAMP_REGION was dependent on COLLECT_TIMESTAMPS,
but should be allowed to be selected independently. My thought is that
the code may only be used when collecting timestamps, the HAS prefix
signifies that this is a platform configuration option.
This fix could also be done by adding 'if COLLECT_TIMESTAMPS' everywhere
that 'select HAS_PRECBMEM_TIMESTAMP_REGION' is used
Change-Id: Iaf4895475c38a855a048dc9b82d4c97e5e3f4e5c
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: http://review.coreboot.org/11338
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Kconfig b/src/Kconfig index 2417faa06b..ff20980a9e 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -188,7 +188,6 @@ config COLLECT_TIMESTAMPS config HAS_PRECBMEM_TIMESTAMP_REGION bool "Timestamp region exists for pre-cbmem timestamps" default y if ARCH_ROMSTAGE_X86_32 && CACHE_AS_RAM - depends on COLLECT_TIMESTAMPS help A separate region is maintained to allow storing of timestamps before cbmem comes up. This is useful for storing timestamps across different |