diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-05-07 21:08:49 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-13 08:48:50 +0000 |
commit | e30c396ffabb3d3c966eecfcd291ca11b815ba7a (patch) | |
tree | 5730cbe86517af03fbefaaa8d56667ec8f208a71 /src/mainboard | |
parent | f70bd99d2af3627b1dbdbea414941a12d6ecf6b3 (diff) |
src: Remove unused '#include <stddef.h>'
Unused includes found using following commande:
diff <(git grep -l '#include <stddef.h>' -- src/) <(git grep -l
'size_t\|ssize_t\|wchar_t\|wint_t\|NULL\|DEVTREE_EARLY\|DEVTREE_CONST\
|MAYBE_STATIC_NONZERO\|MAYBE_STATIC_BSS\|zeroptr' -- src/)|grep '<'
|grep -v vendor |grep -vF '.h'
Change-Id: Ic54b1db995fe7c61b416fa5e1c4022238e4a6ad5
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41150
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/eve/romstage.c | 1 | ||||
-rw-r--r-- | src/mainboard/google/kukui/boardid.c | 1 | ||||
-rw-r--r-- | src/mainboard/google/peach_pit/memory.c | 1 | ||||
-rw-r--r-- | src/mainboard/razer/blade_stealth_kbl/romstage.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/mainboard/google/eve/romstage.c b/src/mainboard/google/eve/romstage.c index 26c0361a8f..f3c0f1140b 100644 --- a/src/mainboard/google/eve/romstage.c +++ b/src/mainboard/google/eve/romstage.c @@ -2,7 +2,6 @@ #include <boardid.h> #include <string.h> -#include <stddef.h> #include <fsp/soc_binding.h> #include <soc/romstage.h> #include <console/console.h> diff --git a/src/mainboard/google/kukui/boardid.c b/src/mainboard/google/kukui/boardid.c index f5955301e9..c6865d1a67 100644 --- a/src/mainboard/google/kukui/boardid.c +++ b/src/mainboard/google/kukui/boardid.c @@ -5,7 +5,6 @@ #include <console/console.h> #include <soc/auxadc.h> #include <ec/google/chromeec/ec.h> -#include <stddef.h> /* For CBI un-provisioned/corrupted Flapjack board. */ #define FLAPJACK_UNDEF_SKU_ID 0 diff --git a/src/mainboard/google/peach_pit/memory.c b/src/mainboard/google/peach_pit/memory.c index 8630802d3e..4e82c90744 100644 --- a/src/mainboard/google/peach_pit/memory.c +++ b/src/mainboard/google/peach_pit/memory.c @@ -4,7 +4,6 @@ #include <soc/dmc.h> #include <soc/gpio.h> #include <soc/setup.h> -#include <stddef.h> const struct mem_timings mem_timings = { .mem_manuf = MEM_MANUF_SAMSUNG, diff --git a/src/mainboard/razer/blade_stealth_kbl/romstage.c b/src/mainboard/razer/blade_stealth_kbl/romstage.c index 94ca09a8f8..92ced2e613 100644 --- a/src/mainboard/razer/blade_stealth_kbl/romstage.c +++ b/src/mainboard/razer/blade_stealth_kbl/romstage.c @@ -7,7 +7,6 @@ #include "spd/spd.h" #include <ec/acpi/ec.h> #include <stdint.h> -#include <stddef.h> #define SPD_4X_2GB 0 #define SPD_4X_4GB 1 |