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>
This commit is contained in:
Simon Glass 2022-07-30 15:52:04 -06:00 committed by Tom Rini
parent 915458e148
commit cafe8712e8
13 changed files with 14 additions and 14 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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"

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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 {

View File

@ -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>

View File

@ -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>

View File

@ -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 {

View File

@ -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