coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
api.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _FSP1_1_API_H_
4 #define _FSP1_1_API_H_
5 
6 /* All the FSP headers need to have UEFI types provided before inclusion. */
7 #include <fsp/uefi_binding.h>
8 
9 /*
10  * Intel's code does not have a handle on changing global packing state.
11  * Therefore, one needs to protect against packing policies that are set
12  * globally for a compilation unit just by including a header file.
13  */
14 #pragma pack(push)
15 
16 #include <vendorcode/intel/fsp/fsp1_1/IntelFspPkg/Include/FspApi.h>
17 #include <vendorcode/intel/fsp/fsp1_1/IntelFspPkg/Include/FspInfoHeader.h>
18 
19 /* Restore original packing policy. */
20 #pragma pack(pop)
21 
22 #endif