summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Peress <peress@google.com>2021-10-12 10:09:10 -0600
committerCommit Bot <commit-bot@chromium.org>2021-10-13 03:44:30 +0000
commit955ba0a2850446db4337ac6b3d16f0ceff502ab7 (patch)
tree490a0260d3bf585e3540ea776346108a9996ee0a
parent3069cac31e30169615800324987c465965f20698 (diff)
downloadchrome-ec-955ba0a2850446db4337ac6b3d16f0ceff502ab7.tar.gz
zephyr: cros_cbi: fix type
BRANCH=none BUG=b:202789410 TEST=zmake configure --test zephyr/test/drivers Signed-off-by: Yuval Peress <peress@google.com> Change-Id: Ib676f08661e24b3b2277316bfc04228a4bb4b2a9 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3218253 Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-by: Keith Short <keithshort@chromium.org>
-rw-r--r--zephyr/drivers/cros_cbi/cros_cbi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/drivers/cros_cbi/cros_cbi.c b/zephyr/drivers/cros_cbi/cros_cbi.c
index d962231c22..2f647272d4 100644
--- a/zephyr/drivers/cros_cbi/cros_cbi.c
+++ b/zephyr/drivers/cros_cbi/cros_cbi.c
@@ -127,7 +127,7 @@ union cbi_ssfc {
};
BUILD_ASSERT(sizeof(union cbi_ssfc) == sizeof(uint32_t),
- "CBI SSFS structure exceedes 32 bits");
+ "CBI SSFS structure exceeds 32 bits");
DT_INST_FOREACH_STATUS_OKAY(CBI_SSFC_VALUE_BUILD_ASSERT)