diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-05-28 17:29:45 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-07-14 16:11:10 +0000 |
commit | 854782330ccd3f92d1b09bd006ddf127ba188cba (patch) | |
tree | 13a9e1fac65940b46883e1e9f2b77ad8fce54531 /src/soc/intel/common | |
parent | 5320f5387ef5cc4e54ef0e5e672b253e9d447592 (diff) | |
download | coreboot-854782330ccd3f92d1b09bd006ddf127ba188cba.tar.xz |
src: Remove unused 'include <stdint.h>
Found using:
diff <(git grep -l '#include <stdint.h>' -- src/) <(git grep -l 'int8_t\|int16_t\|int32_t\|int64_t\|intptr_t\|intmax_t\|s8\|u8\|s16\|u16\|s32\|u32\|s64\|u64\|INT8_MIN\|INT8_MAX\|INT16_MIN\|INT16_MAX\|INT32_MIN\|INT32_MAX\|INT64_MIN\|INT64_MAX\|INTMAX_MIN\|INTMAX_MAX' -- src/) |grep -v vendorcode |grep '<'
Change-Id: I5e14bf4887c7d2644a64f4d58c6d8763eb74d2ed
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41827
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/pcie_rp.h | 1 | ||||
-rw-r--r-- | src/soc/intel/common/block/smbus/smbuslib.h | 1 | ||||
-rw-r--r-- | src/soc/intel/common/mma.h | 1 | ||||
-rw-r--r-- | src/soc/intel/common/pch/include/intelpch/lockdown.h | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/soc/intel/common/block/include/intelblocks/pcie_rp.h b/src/soc/intel/common/block/include/intelblocks/pcie_rp.h index c75e05584a..5f5aab52f4 100644 --- a/src/soc/intel/common/block/include/intelblocks/pcie_rp.h +++ b/src/soc/intel/common/block/include/intelblocks/pcie_rp.h @@ -3,7 +3,6 @@ #ifndef SOC_INTEL_COMMON_BLOCK_PCIE_RP_H #define SOC_INTEL_COMMON_BLOCK_PCIE_RP_H -#include <stdint.h> /* * The PCIe Root Ports usually come in groups of up to 8 PCI-device diff --git a/src/soc/intel/common/block/smbus/smbuslib.h b/src/soc/intel/common/block/smbus/smbuslib.h index 2d8774c689..05cecf351b 100644 --- a/src/soc/intel/common/block/smbus/smbuslib.h +++ b/src/soc/intel/common/block/smbus/smbuslib.h @@ -3,7 +3,6 @@ #ifndef SOC_INTEL_COMMON_BLOCK_SMBUS__LIB_H #define SOC_INTEL_COMMON_BLOCK_SMBUS__LIB_H -#include <stdint.h> /* SMBus IO Base Address */ #define SMBUS_IO_BASE 0xefa0 diff --git a/src/soc/intel/common/mma.h b/src/soc/intel/common/mma.h index 2e0121088a..e58edaf518 100644 --- a/src/soc/intel/common/mma.h +++ b/src/soc/intel/common/mma.h @@ -3,7 +3,6 @@ #ifndef _SOC_MMA_H_ #define _SOC_MMA_H_ -#include <stdint.h> #include <commonlib/region.h> struct mma_config_param { diff --git a/src/soc/intel/common/pch/include/intelpch/lockdown.h b/src/soc/intel/common/pch/include/intelpch/lockdown.h index 72deebdcd5..17b8cbc0e9 100644 --- a/src/soc/intel/common/pch/include/intelpch/lockdown.h +++ b/src/soc/intel/common/pch/include/intelpch/lockdown.h @@ -3,7 +3,6 @@ #ifndef SOC_INTEL_COMMON_PCH_LOCKDOWN_H #define SOC_INTEL_COMMON_PCH_LOCKDOWN_H -#include <stdint.h> /* * This function will get lockdown config specific to soc. |