summaryrefslogtreecommitdiff
path: root/include/system.h
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2019-07-30 15:45:41 -0600
committerCommit Bot <commit-bot@chromium.org>2019-07-31 18:55:48 +0000
commit3e1c72ea23fe3c37f5a4e4e8bceea38c0322ba31 (patch)
tree3dfe5a8708d231c7b260ec2659d63d0faf2fdc01 /include/system.h
parentb224441aaaa5dd08274811d65bb795b4abc231d8 (diff)
downloadchrome-ec-3e1c72ea23fe3c37f5a4e4e8bceea38c0322ba31.tar.gz
common/system: refactor some confusing ifdefs
I had a hard time reading this section, so figured I may as well rewrite it to use IS_ENABLED while I was here. Gave CONFIG_{RO,RW}_HEAD_ROOM a default value of zero here, which makes the math work out for boards without it anyway. BUG=none BRANCH=none TEST=buildall Change-Id: I87dc2d73838c350088916b57aa51d5f368c5592f Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1727570 Reviewed-by: Denis Brockus <dbrockus@chromium.org>
Diffstat (limited to 'include/system.h')
-rw-r--r--include/system.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/system.h b/include/system.h
index 8145fdd491..d09d4121b3 100644
--- a/include/system.h
+++ b/include/system.h
@@ -552,7 +552,6 @@ void system_set_rtc_alarm(uint32_t seconds, uint32_t microseconds);
*/
void system_reset_rtc_alarm(void);
-#ifdef CONFIG_EXTERNAL_STORAGE
/**
* Return address of little FW to prepare for sysjump
*
@@ -581,16 +580,12 @@ void system_set_image_copy(enum system_image_copy_t copy);
*/
enum system_image_copy_t system_get_shrspi_image_copy(void);
-#endif
-
-#ifdef CONFIG_FW_RESET_VECTOR
/**
* Determine reset vector will be jumped to the assigned address.
*
* @return The address of the reset vector for RO/RW firmware image jump.
*/
uintptr_t system_get_fw_reset_vector(uintptr_t base);
-#endif
/**
* Check if the EC is warm booting.