commit | 683d88336ecb19690f3345e81645164b7b5b7179 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Fri May 02 08:46:15 2025 -0600 |
committer | Simon Glass <sjg@chromium.org> | Fri May 30 09:49:31 2025 +0100 |
tree | 59dd168bdade393dc3f0d84f2fa1aadf2293cdc4 | |
parent | b776e25b97721c1973a497bf1586712c3a8e67c5 [diff] [blame] |
expo: Add CLI context to the expo An expo generally needs to keep track of the keyboard state while it is running, so move the context into struct expo Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/boot/expo.c b/boot/expo.c index 8ce645e..9c042f1 100644 --- a/boot/expo.c +++ b/boot/expo.c
@@ -30,6 +30,7 @@ INIT_LIST_HEAD(&exp->scene_head); INIT_LIST_HEAD(&exp->str_head); exp->next_id = EXPOID_BASE_ID; + cli_ch_init(&exp->cch); *expp = exp;