summaryrefslogtreecommitdiff
path: root/src/boot/efi/splash.c
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2021-01-30 17:10:29 +0000
committerDaan De Meyer <daan.j.demeyer@gmail.com>2021-01-31 10:38:59 +0000
commit9a383acaddb9403cc317d549b9bc34fd1305907a (patch)
treefca6f62957126f0fdee9a54cbf827c9ecb3d3bb9 /src/boot/efi/splash.c
parentbc556335b1c568c98688cc1f586b5f753fcddac6 (diff)
downloadsystemd-9a383acaddb9403cc317d549b9bc34fd1305907a.tar.gz
sd-boot: Make internal functions static
Diffstat (limited to 'src/boot/efi/splash.c')
-rw-r--r--src/boot/efi/splash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/efi/splash.c b/src/boot/efi/splash.c
index e166fec57a..552c45cff4 100644
--- a/src/boot/efi/splash.c
+++ b/src/boot/efi/splash.c
@@ -37,7 +37,7 @@ struct bmp_map {
UINT8 reserved;
} __attribute__((packed));
-EFI_STATUS bmp_parse_header(UINT8 *bmp, UINTN size, struct bmp_dib **ret_dib,
+static EFI_STATUS bmp_parse_header(UINT8 *bmp, UINTN size, struct bmp_dib **ret_dib,
struct bmp_map **ret_map, UINT8 **pixmap) {
struct bmp_file *file;
struct bmp_dib *dib;
@@ -147,7 +147,7 @@ static VOID pixel_blend(UINT32 *dst, const UINT32 source) {
*dst = (rb | g);
}
-EFI_STATUS bmp_to_blt(EFI_GRAPHICS_OUTPUT_BLT_PIXEL *buf,
+static EFI_STATUS bmp_to_blt(EFI_GRAPHICS_OUTPUT_BLT_PIXEL *buf,
struct bmp_dib *dib, struct bmp_map *map,
UINT8 *pixmap) {
UINT8 *in;