blob: 600ba84575a5f12b1922fa49b28dc65743a14a01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef _INTEL_COMMON_VBT_H_
#define _INTEL_COMMON_VBT_H_
#include <commonlib/region.h>
#include <types.h>
/*
* Returns VBT pointer and mapping after checking prerequisites for Pre OS
* Graphics initialization
*/
void *vbt_get(void);
#endif
|