Move compiler.h to commonlib
Its spreading copies got out of sync. And as it is not a standard header but used in commonlib code, it belongs into commonlib. While we are at it, always include it via GCC's `-include` switch. Some Windows and BSD quirk handling went into the util copies. We always guard from redefinitions now to prevent further issues. Change-Id: I850414e6db1d799dce71ff2dc044e6a000ad2552 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/28927 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
@@ -18,7 +18,6 @@
|
||||
#define AMDFAM10_H
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <compiler.h>
|
||||
#include <arch/io.h>
|
||||
#include <device/device.h>
|
||||
#include "early_ht.h"
|
||||
|
@@ -23,7 +23,6 @@
|
||||
#define DQS_TRAIN_DEBUG 0
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <compiler.h>
|
||||
#include "mct_d_gcc.h"
|
||||
#include <console/console.h>
|
||||
#include <northbridge/amd/amdfam10/debug.h>
|
||||
|
@@ -13,7 +13,6 @@
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <compiler.h>
|
||||
#include <console/console.h>
|
||||
#include <cpu/x86/msr.h>
|
||||
#include <cpu/amd/lxdef.h>
|
||||
|
@@ -16,7 +16,6 @@
|
||||
#include <AGESA.h>
|
||||
#include <cbfs.h>
|
||||
#include <cbmem.h>
|
||||
#include <compiler.h>
|
||||
#include <delay.h>
|
||||
#include <cpu/x86/mtrr.h>
|
||||
#include <FchPlatform.h>
|
||||
|
@@ -24,7 +24,6 @@
|
||||
* Steven James 02/06/2003
|
||||
*/
|
||||
|
||||
#include <compiler.h>
|
||||
#include <stdint.h>
|
||||
#include <device/pci_def.h>
|
||||
#include <arch/io.h>
|
||||
|
@@ -202,7 +202,6 @@
|
||||
#define DMIDRCCFG 0xeb4 /* 32bit */
|
||||
|
||||
#ifndef __ASSEMBLER__
|
||||
#include <compiler.h>
|
||||
static inline void barrier(void) { asm("" ::: "memory"); }
|
||||
|
||||
struct ied_header {
|
||||
|
@@ -30,8 +30,6 @@
|
||||
#ifndef PEI_DATA_H
|
||||
#define PEI_DATA_H
|
||||
|
||||
#include <compiler.h>
|
||||
|
||||
typedef void (*tx_byte_func)(unsigned char byte);
|
||||
#define PEI_VERSION 15
|
||||
|
||||
|
@@ -16,8 +16,6 @@
|
||||
#ifndef RAMINIT_H
|
||||
#define RAMINIT_H
|
||||
|
||||
#include <compiler.h>
|
||||
|
||||
#define DIMM_SOCKETS 2
|
||||
|
||||
#define DIMM_TCO_BASE 0x30
|
||||
|
@@ -15,7 +15,6 @@
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <compiler.h>
|
||||
#include <console/console.h>
|
||||
#include <string.h>
|
||||
#include <arch/io.h>
|
||||
|
@@ -30,8 +30,6 @@
|
||||
#ifndef PEI_DATA_H
|
||||
#define PEI_DATA_H
|
||||
|
||||
#include <compiler.h>
|
||||
|
||||
typedef struct {
|
||||
uint16_t mode; // 0: Disable, 1: Enable, 2: Auto, 3: Smart Auto
|
||||
uint16_t hs_port_switch_mask; // 4 bit mask, 1: switchable, 0: not switchable
|
||||
|
@@ -16,7 +16,6 @@
|
||||
#ifndef RAMINIT_H
|
||||
#define RAMINIT_H
|
||||
|
||||
#include <compiler.h>
|
||||
#include "pei_data.h"
|
||||
|
||||
struct sys_info {
|
||||
|
@@ -13,7 +13,6 @@
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <compiler.h>
|
||||
#include <console/console.h>
|
||||
#include <console/usb.h>
|
||||
#include <bootmode.h>
|
||||
|
Reference in New Issue
Block a user