summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-07-31 00:52:04 +0300
committerTom Rini <trini@konsulko.com>2022-08-12 15:14:23 +0300
commitcafe8712e8143ae8e5e5d733d74bc46bffe0be92 (patch)
treefb3a5685c362e3f7d4dd3e30bcf31988a0e7227b
parent915458e148d969ccc2e6d246794324f1f34f5b6b (diff)
downloadu-boot-cafe8712e8143ae8e5e5d733d74bc46bffe0be92.tar.xz
video: Renname vbe.h to vesa.h
We want to use VBE to mean Verfiied Boot for Embedded in U-Boot. Rename the existing VBE (Vesa BIOS extensions) to allow this. Verified Boot for Embedded is documented doc/develop/vbe.rst Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--arch/x86/lib/bios.c2
-rw-r--r--arch/x86/lib/coreboot_table.c2
-rw-r--r--arch/x86/lib/fsp/fsp_graphics.c2
-rw-r--r--cmd/elf.c2
-rw-r--r--drivers/bios_emulator/atibios.c2
-rw-r--r--drivers/pci/pci_rom.c2
-rw-r--r--drivers/video/broadwell_igd.c2
-rw-r--r--drivers/video/coreboot.c2
-rw-r--r--drivers/video/efi.c2
-rw-r--r--drivers/video/ivybridge_igd.c2
-rw-r--r--drivers/video/vesa.c2
-rw-r--r--include/vesa.h (renamed from include/vbe.h)4
-rw-r--r--lib/elf.c2
13 files changed, 14 insertions, 14 deletions
diff --git a/arch/x86/lib/bios.c b/arch/x86/lib/bios.c
index 98cc05de2e..087539ba7d 100644
--- a/arch/x86/lib/bios.c
+++ b/arch/x86/lib/bios.c
@@ -10,7 +10,7 @@
#include <bios_emul.h>
#include <irq_func.h>
#include <log.h>
-#include <vbe.h>
+#include <vesa.h>
#include <linux/linkage.h>
#include <asm/cache.h>
#include <asm/processor.h>
diff --git a/arch/x86/lib/coreboot_table.c b/arch/x86/lib/coreboot_table.c
index 6eab0452fd..05519d851a 100644
--- a/arch/x86/lib/coreboot_table.c
+++ b/arch/x86/lib/coreboot_table.c
@@ -6,7 +6,7 @@
#include <common.h>
#include <malloc.h>
#include <net.h>
-#include <vbe.h>
+#include <vesa.h>
#include <acpi/acpi_s3.h>
#include <asm/coreboot_tables.h>
#include <asm/e820.h>
diff --git a/arch/x86/lib/fsp/fsp_graphics.c b/arch/x86/lib/fsp/fsp_graphics.c
index 02fd05c9fa..6a7552e695 100644
--- a/arch/x86/lib/fsp/fsp_graphics.c
+++ b/arch/x86/lib/fsp/fsp_graphics.c
@@ -9,7 +9,7 @@
#include <dm.h>
#include <init.h>
#include <log.h>
-#include <vbe.h>
+#include <vesa.h>
#include <video.h>
#include <acpi/acpi_table.h>
#include <asm/fsp/fsp_support.h>
diff --git a/cmd/elf.c b/cmd/elf.c
index 2b33c50bd0..ce40d3f72a 100644
--- a/cmd/elf.c
+++ b/cmd/elf.c
@@ -14,7 +14,7 @@
#include <net.h>
#include <vxworks.h>
#ifdef CONFIG_X86
-#include <vbe.h>
+#include <vesa.h>
#include <asm/cache.h>
#include <asm/e820.h>
#include <linux/linkage.h>
diff --git a/drivers/bios_emulator/atibios.c b/drivers/bios_emulator/atibios.c
index cdc5ba6ad9..09da76bc5d 100644
--- a/drivers/bios_emulator/atibios.c
+++ b/drivers/bios_emulator/atibios.c
@@ -51,7 +51,7 @@
#include <errno.h>
#include <log.h>
#include <malloc.h>
-#include <vbe.h>
+#include <vesa.h>
#include <linux/delay.h>
#include "biosemui.h"
diff --git a/drivers/pci/pci_rom.c b/drivers/pci/pci_rom.c
index 73d15e797f..ceeb59d1fe 100644
--- a/drivers/pci/pci_rom.c
+++ b/drivers/pci/pci_rom.c
@@ -34,7 +34,7 @@
#include <malloc.h>
#include <pci.h>
#include <pci_rom.h>
-#include <vbe.h>
+#include <vesa.h>
#include <video.h>
#include <acpi/acpi_s3.h>
#include <asm/global_data.h>
diff --git a/drivers/video/broadwell_igd.c b/drivers/video/broadwell_igd.c
index 2551f162e8..81f0fd8c01 100644
--- a/drivers/video/broadwell_igd.c
+++ b/drivers/video/broadwell_igd.c
@@ -11,7 +11,7 @@
#include <dm.h>
#include <init.h>
#include <log.h>
-#include <vbe.h>
+#include <vesa.h>
#include <video.h>
#include <asm/cpu.h>
#include <asm/global_data.h>
diff --git a/drivers/video/coreboot.c b/drivers/video/coreboot.c
index 7237542c07..3efc65daa2 100644
--- a/drivers/video/coreboot.c
+++ b/drivers/video/coreboot.c
@@ -6,7 +6,7 @@
#include <common.h>
#include <dm.h>
#include <init.h>
-#include <vbe.h>
+#include <vesa.h>
#include <video.h>
#include <asm/cb_sysinfo.h>
diff --git a/drivers/video/efi.c b/drivers/video/efi.c
index 5f9031f2ec..d60b6e2756 100644
--- a/drivers/video/efi.c
+++ b/drivers/video/efi.c
@@ -9,7 +9,7 @@
#include <dm.h>
#include <efi_api.h>
#include <log.h>
-#include <vbe.h>
+#include <vesa.h>
#include <video.h>
struct pixel {
diff --git a/drivers/video/ivybridge_igd.c b/drivers/video/ivybridge_igd.c
index 1aa5317dd5..18672a1897 100644
--- a/drivers/video/ivybridge_igd.c
+++ b/drivers/video/ivybridge_igd.c
@@ -10,7 +10,7 @@
#include <fdtdec.h>
#include <log.h>
#include <pci_rom.h>
-#include <vbe.h>
+#include <vesa.h>
#include <video.h>
#include <asm/global_data.h>
#include <asm/intel_regs.h>
diff --git a/drivers/video/vesa.c b/drivers/video/vesa.c
index 869e546973..91da939e59 100644
--- a/drivers/video/vesa.c
+++ b/drivers/video/vesa.c
@@ -7,7 +7,7 @@
#include <dm.h>
#include <log.h>
#include <pci.h>
-#include <vbe.h>
+#include <vesa.h>
#include <video.h>
#include <asm/mtrr.h>
diff --git a/include/vbe.h b/include/vesa.h
index 1631260eb7..30df58a9f1 100644
--- a/include/vbe.h
+++ b/include/vesa.h
@@ -7,8 +7,8 @@
* Contributors:
* IBM Corporation - initial implementation
*****************************************************************************/
-#ifndef _VBE_H
-#define _VBE_H
+#ifndef _VESA_H
+#define _VESA_H
/* these structs are for input from and output to OF */
struct __packed vbe_screen_info {
diff --git a/lib/elf.c b/lib/elf.c
index d074e4e0a7..0476b2614c 100644
--- a/lib/elf.c
+++ b/lib/elf.c
@@ -11,7 +11,7 @@
#include <net.h>
#include <vxworks.h>
#ifdef CONFIG_X86
-#include <vbe.h>
+#include <vesa.h>
#include <asm/e820.h>
#include <linux/linkage.h>
#endif