]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
efi_loader: make gop_blt() static
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 10 Feb 2023 08:05:03 +0000 (09:05 +0100)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 10 Feb 2023 12:05:40 +0000 (13:05 +0100)
This function is not used externally.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
lib/efi_loader/efi_gop.c

index d1dc2f22d0f758a5ae77a4564987bca536bf005f..778b693f983ad83b0d35c83c6677e46b7c2a8a49 100644 (file)
@@ -400,11 +400,12 @@ out:
  * @delta:     length in bytes of a line in the pixel buffer (optional)
  * Return:     status code
  */
-efi_status_t EFIAPI gop_blt(struct efi_gop *this, struct efi_gop_pixel *buffer,
-                           u32 operation, efi_uintn_t sx,
-                           efi_uintn_t sy, efi_uintn_t dx,
-                           efi_uintn_t dy, efi_uintn_t width,
-                           efi_uintn_t height, efi_uintn_t delta)
+static efi_status_t EFIAPI gop_blt(struct efi_gop *this,
+                                  struct efi_gop_pixel *buffer,
+                                  u32 operation, efi_uintn_t sx,
+                                  efi_uintn_t sy, efi_uintn_t dx,
+                                  efi_uintn_t dy, efi_uintn_t width,
+                                  efi_uintn_t height, efi_uintn_t delta)
 {
        efi_status_t ret = EFI_INVALID_PARAMETER;
        efi_uintn_t vid_bpp;