mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
video: Mark truetype_measure() static
This function is not used outside this file, so mark it static. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
c4fea34fd0
commit
6d225ec0cc
1 changed files with 2 additions and 2 deletions
|
@ -718,8 +718,8 @@ static int truetype_select_font(struct udevice *dev, const char *name,
|
|||
return 0;
|
||||
}
|
||||
|
||||
int truetype_measure(struct udevice *dev, const char *name, uint size,
|
||||
const char *text, struct vidconsole_bbox *bbox)
|
||||
static int truetype_measure(struct udevice *dev, const char *name, uint size,
|
||||
const char *text, struct vidconsole_bbox *bbox)
|
||||
{
|
||||
struct console_tt_metrics *met;
|
||||
stbtt_fontinfo *font;
|
||||
|
|
Loading…
Reference in a new issue