summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-11-04 17:13:46 -0700
committerCommit Bot <commit-bot@chromium.org>2020-11-05 20:58:56 +0000
commit0d05b3eed45e684f37eb49d1e6cce69d32ccc0b7 (patch)
tree3483045486102369248fc81bfc64448d610a86e6
parent7fcb1a8a8dc0cb59e432118eac4ce366132a65f7 (diff)
downloadchrome-ec-0d05b3eed45e684f37eb49d1e6cce69d32ccc0b7.tar.gz
zephyr: Sort shimmed modules
Sort these into alpha order to make them easier to find as the list grows. BUG=b:167405015 BRANCH=none TEST=zmake configure .../zephyr-chrome/projects/experimental/volteer \ -B /tmp/z/cos zmake build /tmp/z/cos See there are no errors Signed-off-by: Simon Glass <sjg@chromium.org> Change-Id: I863f798381dc1f991b5eca9dd080fabf46e9888f Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2521356 Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-by: Jett Rink <jettrink@chromium.org>
-rw-r--r--zephyr/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/CMakeLists.txt b/zephyr/CMakeLists.txt
index cac731a2bc..53e5c52106 100644
--- a/zephyr/CMakeLists.txt
+++ b/zephyr/CMakeLists.txt
@@ -36,5 +36,5 @@ add_subdirectory_ifdef(CONFIG_PLATFORM_EC "shim/src")
# Shimmed modules
zephyr_sources_ifdef(CONFIG_PLATFORM_EC "${PLATFORM_EC}/common/base32.c")
-zephyr_sources_ifdef(CONFIG_PLATFORM_EC_TIMER "${PLATFORM_EC}/common/timer.c")
zephyr_sources_ifdef(CONFIG_SHELL "${PLATFORM_EC}/common/gpio_commands.c")
+zephyr_sources_ifdef(CONFIG_PLATFORM_EC_TIMER "${PLATFORM_EC}/common/timer.c")