diff options
| author | Simon Glass <[email protected]> | 2023-06-01 10:22:37 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-07-14 12:54:51 -0400 |
| commit | 5904d953a1183e191e9ec4ab15c31c6522f625ad (patch) | |
| tree | 8967dcb6c1a2a17a114dcccb26cd57005d689499 /include | |
| parent | a8f80409b06a39605aadaaf64bdbf71b31d463ca (diff) | |
expo: Rename exp_set_text_mode()
Rename this function to match its peers, using the full "expo' prefix.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/expo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/expo.h b/include/expo.h index 06f5629e03f..f77ee708519 100644 --- a/include/expo.h +++ b/include/expo.h @@ -306,12 +306,12 @@ int expo_set_scene_id(struct expo *exp, uint scene_id); int expo_render(struct expo *exp); /** - * exp_set_text_mode() - Controls whether the expo renders in text mode + * expo_set_text_mode() - Controls whether the expo renders in text mode * * @exp: Expo to update * @text_mode: true to use text mode, false to use the console */ -void exp_set_text_mode(struct expo *exp, bool text_mode); +void expo_set_text_mode(struct expo *exp, bool text_mode); /** * scene_new() - create a new scene in a expo |
