summaryrefslogtreecommitdiff
path: root/include/host_command.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/host_command.h')
-rw-r--r--include/host_command.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/host_command.h b/include/host_command.h
index aff1d1b8b5..02c9b07915 100644
--- a/include/host_command.h
+++ b/include/host_command.h
@@ -161,6 +161,17 @@ void host_clear_events(uint32_t mask);
* Return the raw event state.
*/
uint32_t host_get_events(void);
+
+/**
+ * Check a single host event.
+ *
+ * @param event Event to check
+ * @return true if <event> is set or false otherwise
+ */
+static inline int host_is_event_set(enum host_event_code event)
+{
+ return host_get_events() & EC_HOST_EVENT_MASK(event);
+}
#endif
/**