0612b27b9d
Done with sed and God Lines. Only done for C-like code for now. Change-Id: Ic5a920bfe1059534566ceab85a97219dd56f069e Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40213 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
23 lines
527 B
C
23 lines
527 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#include <arch/acpi.h>
|
|
#include <bootmode.h>
|
|
#include <bootstate.h>
|
|
|
|
#include "vbt.h"
|
|
#include <drivers/intel/gma/opregion.h>
|
|
|
|
void *vbt_get(void)
|
|
{
|
|
if (!CONFIG(RUN_FSP_GOP))
|
|
return NULL;
|
|
|
|
/* Normal mode and S3 resume path PEIM GFX init is not needed.
|
|
* Passing NULL as VBT will not make PEIM GFX to execute. */
|
|
if (acpi_is_wakeup_s3())
|
|
return NULL;
|
|
if (!display_init_required())
|
|
return NULL;
|
|
return locate_vbt(NULL);
|
|
}
|