summaryrefslogtreecommitdiff
path: root/include/ec_commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ec_commands.h')
-rw-r--r--include/ec_commands.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ec_commands.h b/include/ec_commands.h
index 87985175a5..239f21d77e 100644
--- a/include/ec_commands.h
+++ b/include/ec_commands.h
@@ -779,7 +779,13 @@ enum host_event_code {
* not initialized on the EC, or improperly configured on the host.
*/
EC_HOST_EVENT_INVALID = 32,
+
+ /*
+ * Only 64 host events are supported. This enum uses 1-based counting so
+ * it can skip 0 (NONE), so the last legal host event number is 64.
+ */
};
+
/* Host event mask */
#define EC_HOST_EVENT_MASK(event_code) BIT_ULL((event_code)-1)