src/{include,arch,cpu,lib}: 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: I57aead27806e307b9827fc7ee2cd663f12ee6e5e Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31892 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
This commit is contained in:
parent
62c0b61bed
commit
b12ece98b0
|
@ -56,11 +56,11 @@
|
|||
#define OEM_ID "COREv4" /* Must be exactly 6 bytes long! */
|
||||
|
||||
#if !defined(__ASSEMBLER__) && !defined(__ACPI__) && !defined(__ROMCC__)
|
||||
#include <stdint.h>
|
||||
#include <commonlib/helpers.h>
|
||||
#include <device/device.h>
|
||||
#include <uuid.h>
|
||||
#include <cper.h>
|
||||
#include <types.h>
|
||||
|
||||
#define RSDP_SIG "RSD PTR " /* RSDT pointer signature */
|
||||
#define ASLC "CORE" /* Must be exactly 4 bytes long! */
|
||||
|
|
|
@ -20,12 +20,13 @@
|
|||
* Largely based on the uboot-sunxi code.
|
||||
*/
|
||||
|
||||
#include "memmap.h"
|
||||
#include "twi.h"
|
||||
|
||||
#include <device/mmio.h>
|
||||
#include <delay.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <types.h>
|
||||
|
||||
#include "memmap.h"
|
||||
#include "twi.h"
|
||||
|
||||
#define TWI_BASE(n) (A1X_TWI0_BASE + 0x400 * (n))
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#include <console/console.h>
|
||||
#include <cpu/amd/msr.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <types.h>
|
||||
|
||||
#include "init_cpus.h"
|
||||
|
||||
#if CONFIG(HAVE_OPTION_TABLE)
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
|
||||
#include <console/console.h>
|
||||
#include <stdint.h>
|
||||
#include <option.h>
|
||||
#include <cpu/x86/msr.h>
|
||||
#include <cpu/amd/msr.h>
|
||||
|
@ -30,6 +29,7 @@
|
|||
#include <northbridge/amd/amdht/AsPsDefs.h>
|
||||
#include <northbridge/amd/amdmct/mct/mct.h>
|
||||
#include <northbridge/amd/amdmct/amddefs.h>
|
||||
#include <types.h>
|
||||
|
||||
static inline uint8_t is_fam15h(void)
|
||||
{
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
|
||||
#ifndef __TYPES_H
|
||||
#define __TYPES_H
|
||||
|
||||
/* types.h is supposed to provide stdint and stddef defined in here: */
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*/
|
||||
|
||||
#include "lzmadecode.h"
|
||||
#include <stdint.h>
|
||||
#include <types.h>
|
||||
|
||||
#define kNumTopBits 24
|
||||
#define kTopValue ((UInt32)1 << kNumTopBits)
|
||||
|
|
Loading…
Reference in New Issue