838818e5a9
Add patches queued in -next to make efifb / fbcon retain the vendor logo (ACPI BRGT boot graphics) until the first text is output to the console
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 421b8aef3902426c4c3ebd23218c0ad282786e1d Mon Sep 17 00:00:00 2001
|
|
From: Hans de Goede <hdegoede@redhat.com>
|
|
Date: Tue, 3 Jul 2018 17:43:10 +0200
|
|
Subject: [PATCH 5/7] efi/bgrt: Drop __initdata from bgrt_image_size
|
|
|
|
bgrt_image_size is necessary to (optionally) show the boot graphics from
|
|
the efifb code. The efifb driver is a platform driver, using a normal
|
|
driver probe() driver callback. So even though it is always builtin it
|
|
cannot reference __initdata.
|
|
|
|
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
|
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
|
|
---
|
|
drivers/firmware/efi/efi-bgrt.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/firmware/efi/efi-bgrt.c b/drivers/firmware/efi/efi-bgrt.c
|
|
index 50793fda7819..b22ccfb0c991 100644
|
|
--- a/drivers/firmware/efi/efi-bgrt.c
|
|
+++ b/drivers/firmware/efi/efi-bgrt.c
|
|
@@ -20,7 +20,7 @@
|
|
#include <linux/efi-bgrt.h>
|
|
|
|
struct acpi_table_bgrt bgrt_tab;
|
|
-size_t __initdata bgrt_image_size;
|
|
+size_t bgrt_image_size;
|
|
|
|
struct bmp_header {
|
|
u16 id;
|
|
--
|
|
2.18.0
|
|
|