diff options
author | Martin Roth <gaumless@gmail.com> | 2022-09-05 10:41:32 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-09-06 17:57:51 +0000 |
commit | 9228f9e49ad2b6ed28056988880032b638ffbf09 (patch) | |
tree | 3d009c6844e89247a8453b6307ca92868c577147 /src/soc/intel/common | |
parent | 7a9716bb45066795b59b3c82374d0d7c5b8b7062 (diff) |
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
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67349
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/scs/early_mmc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/scs/early_mmc.c b/src/soc/intel/common/block/scs/early_mmc.c index caee7d9007..4e765339ce 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> |