summaryrefslogtreecommitdiff
path: root/zephyr/app/ec
diff options
context:
space:
mode:
authorKeith Short <keithshort@chromium.org>2022-03-30 16:51:28 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-03-31 20:28:38 +0000
commit3d5ddbc6e8bad5d183fbb99d832475c9ed7381aa (patch)
tree042a3b9f49913ccf5c04d546d7cbdf55fa03f8d1 /zephyr/app/ec
parent080f260fab9a01a27a66ee3729ee25e372e7e841 (diff)
downloadchrome-ec-3d5ddbc6e8bad5d183fbb99d832475c9ed7381aa.tar.gz
zephyr: increase the number of preemptive threads
The Byra platform has a total of 17 threads. Increase the maximum number of preemptive threads to 20. There is no flash or RAM impact to setting CONFIG_NUM_PREEMPT_PRIORITIES above the minimum required. BUG=none BRANCH=none TEST=zmake testall Signed-off-by: Keith Short <keithshort@chromium.org> Change-Id: I16078b668d28d45e5a19ce2f81d0fad8ba1fe466 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3562039 Reviewed-by: Yuval Peress <peress@google.com>
Diffstat (limited to 'zephyr/app/ec')
-rw-r--r--zephyr/app/ec/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/app/ec/Kconfig b/zephyr/app/ec/Kconfig
index bcde7b73f5..d90e22328d 100644
--- a/zephyr/app/ec/Kconfig
+++ b/zephyr/app/ec/Kconfig
@@ -24,7 +24,7 @@ orsource "chip/$(ARCH)/*/Kconfig.*"
# Override the maximum number of preemptive priority levels.
#
config NUM_PREEMPT_PRIORITIES
- default 16
+ default 20
config LTO
bool "Link Time Optimization (LTO)"