src/{device,drivers}: Add missing 'include <types.h>'
<types.h> is supposed to provide <stdint.h> and <stddef.h>. So when <types.h> is included, <stdint.h> and/or <stddef.h> is removed. Change-Id: I3395715f9e2b03175089186ab2e57d9e508fc87c Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32806 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
This commit is contained in:
parent
b12ece98b0
commit
bd1683da29
|
@ -26,6 +26,7 @@
|
|||
#include <device/dram/ddr2.h>
|
||||
#include <lib.h>
|
||||
#include <string.h>
|
||||
#include <types.h>
|
||||
|
||||
/*==============================================================================
|
||||
* = DDR2 SPD decoding helpers
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include <memory_info.h>
|
||||
#include <cbmem.h>
|
||||
#include <smbios.h>
|
||||
#include <types.h>
|
||||
|
||||
/*==============================================================================
|
||||
* = DDR3 SPD decoding helpers
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <types.h>
|
||||
|
||||
enum {
|
||||
BH720_PROTECT = 0xd0,
|
||||
BH720_PROTECT_LOCK_OFF = 0,
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#include <console/console.h>
|
||||
#include <fsp/util.h>
|
||||
#include <soc/intel/common/vbt.h>
|
||||
#include <types.h>
|
||||
|
||||
enum pixel_format {
|
||||
pixel_rgbx_8bpc = 0,
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include <fsp/api.h>
|
||||
#include <fsp/info_header.h>
|
||||
#include <memrange.h>
|
||||
#include <types.h>
|
||||
|
||||
struct hob_header {
|
||||
uint16_t type;
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
#include <security/tpm/tspi.h>
|
||||
#include <vb2_api.h>
|
||||
#include <fsp/memory_init.h>
|
||||
#include <types.h>
|
||||
|
||||
/* TPM MRC hash functionality depends on vboot starting before memory init. */
|
||||
_Static_assert(!CONFIG(FSP2_0_USES_TPM_MRC_HASH) ||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include <stage_cache.h>
|
||||
#include <string.h>
|
||||
#include <timestamp.h>
|
||||
#include <types.h>
|
||||
|
||||
struct fsp_header fsps_hdr;
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#include <fsp/util.h>
|
||||
#include <memrange.h>
|
||||
#include <cbfs.h>
|
||||
#include <types.h>
|
||||
|
||||
void fsp_temp_ram_exit(void)
|
||||
{
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#include <console/console.h>
|
||||
#include <fsp/util.h>
|
||||
#include <string.h>
|
||||
#include <types.h>
|
||||
|
||||
static bool looks_like_fsp_header(const uint8_t *raw_hdr)
|
||||
{
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include <console/console.h>
|
||||
#include <device/pci.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <types.h>
|
||||
|
||||
#define REG_SPI_FLASH_CTRL 0x200
|
||||
#define SPI_FLASH_CTRL_EN_VPD 0x2000
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
#include <device/pci_def.h>
|
||||
#include <delay.h>
|
||||
#include <fmap.h>
|
||||
#include <types.h>
|
||||
|
||||
#include "chip.h"
|
||||
|
||||
#define NIC_TIMEOUT 1000
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#include <arch/io.h>
|
||||
#include <bcd.h>
|
||||
#include <fallback.h>
|
||||
#include <stdint.h>
|
||||
#include <version.h>
|
||||
#include <console/console.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
|
@ -29,6 +28,7 @@
|
|||
#include <cbfs.h>
|
||||
#include <security/vboot/vbnv.h>
|
||||
#include <security/vboot/vbnv_layout.h>
|
||||
#include <types.h>
|
||||
|
||||
/* There's no way around this include guard. option_table.h is autogenerated */
|
||||
#if CONFIG(USE_OPTION_TABLE)
|
||||
|
|
|
@ -8,12 +8,13 @@
|
|||
* Subject to the GNU GPL v2, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#include "axp209.h"
|
||||
#include "chip.h"
|
||||
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <types.h>
|
||||
|
||||
#include "axp209.h"
|
||||
#include "chip.h"
|
||||
|
||||
/* Hide these definitions from the rest of the source, so keep them here */
|
||||
enum registers {
|
||||
|
|
Loading…
Reference in New Issue