Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/67349 )
Change subject: src/soc/intel: remove force-included header compiler.h from file ......................................................................
src/soc/intel: remove force-included header compiler.h from file
The header file `compiler.h` is automatically included in the build by the top level makefile using the command: `-include $(src)/commonlib/bsd/include/commonlib/bsd/compiler.h`.
Similar to `config.h`, 'kconfig.h`, and 'rules.h`, this file does not need to be included manually, so remove it.
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: I5d3eb3f5e5f940910b2d45e0a2ae508e5ce91609 --- M src/soc/intel/common/block/scs/early_mmc.c 1 file changed, 17 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/49/67349/1
diff --git a/src/soc/intel/common/block/scs/early_mmc.c b/src/soc/intel/common/block/scs/early_mmc.c index caee7d9..4e76533 100644 --- a/src/soc/intel/common/block/scs/early_mmc.c +++ b/src/soc/intel/common/block/scs/early_mmc.c @@ -5,7 +5,6 @@ #include <commonlib/storage/sd_mmc.h> #include <commonlib/sd_mmc_ctrlr.h> #include <commonlib/sdhci.h> -#include <compiler.h> #include <console/console.h> #include <device/pci.h> #include <intelblocks/mmc.h>