diff options
author | Simon Glass <sjg@chromium.org> | 2023-06-01 10:22:37 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-07-14 12:54:51 -0400 |
commit | 5904d953a1183e191e9ec4ab15c31c6522f625ad (patch) | |
tree | 8967dcb6c1a2a17a114dcccb26cd57005d689499 /boot/expo.c | |
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 <sjg@chromium.org>
Diffstat (limited to 'boot/expo.c')
-rw-r--r-- | boot/expo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/expo.c b/boot/expo.c index bfdda9570c..e7c81a3983 100644 --- a/boot/expo.c +++ b/boot/expo.c @@ -97,7 +97,7 @@ int expo_set_display(struct expo *exp, struct udevice *dev) return 0; } -void exp_set_text_mode(struct expo *exp, bool text_mode) +void expo_set_text_mode(struct expo *exp, bool text_mode) { exp->text_mode = text_mode; } |