diff options
| author | Simon Glass <[email protected]> | 2022-07-30 15:52:04 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-08-12 08:14:23 -0400 |
| commit | cafe8712e8143ae8e5e5d733d74bc46bffe0be92 (patch) | |
| tree | fb3a5685c362e3f7d4dd3e30bcf31988a0e7227b /drivers | |
| parent | 915458e148d969ccc2e6d246794324f1f34f5b6b (diff) | |
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 <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/bios_emulator/atibios.c | 2 | ||||
| -rw-r--r-- | drivers/pci/pci_rom.c | 2 | ||||
| -rw-r--r-- | drivers/video/broadwell_igd.c | 2 | ||||
| -rw-r--r-- | drivers/video/coreboot.c | 2 | ||||
| -rw-r--r-- | drivers/video/efi.c | 2 | ||||
| -rw-r--r-- | drivers/video/ivybridge_igd.c | 2 | ||||
| -rw-r--r-- | drivers/video/vesa.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/drivers/bios_emulator/atibios.c b/drivers/bios_emulator/atibios.c index cdc5ba6ad90..09da76bc5d9 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 73d15e797fc..ceeb59d1fe4 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 2551f162e8f..81f0fd8c019 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 7237542c076..3efc65daa2b 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 5f9031f2ec5..d60b6e27569 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 1aa5317dd5f..18672a18973 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 869e5469732..91da939e59b 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> |
