diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-05-11 18:13:33 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-13 08:54:14 +0000 |
commit | bc867d5b1d47e961b563431ec602934280fcbb96 (patch) | |
tree | 5faae48f6a345421e9a957f722faea2260340d14 /src/mainboard/elmex | |
parent | 6a197964d9f21305595d5f8dba3b7ad1f0547307 (diff) |
src/mainboard: Remove unused 'include <stdlib.h>'
Found using following commande:
diff <(git grep -l '#include <stdlib.h>' -- src/) <(git grep -l '
memalign\|malloc\|free' -- src/) |grep -v vendorcode |grep '<'
Change-Id: Ib2ee840a10de5c10d57aa7a75b805ef69dc8da84
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41241
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/elmex')
-rw-r--r-- | src/mainboard/elmex/pcm205400/BiosCallOuts.c | 1 | ||||
-rw-r--r-- | src/mainboard/elmex/pcm205400/buildOpts.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/mainboard/elmex/pcm205400/BiosCallOuts.c b/src/mainboard/elmex/pcm205400/BiosCallOuts.c index 38a1296b60..2242c0e988 100644 --- a/src/mainboard/elmex/pcm205400/BiosCallOuts.c +++ b/src/mainboard/elmex/pcm205400/BiosCallOuts.c @@ -5,7 +5,6 @@ #include <amdblocks/acpimmio.h> #include <northbridge/amd/agesa/BiosCallOuts.h> #include <SB800.h> -#include <stdlib.h> static AGESA_STATUS board_BeforeDramInit (UINT32 Func, UINTN Data, VOID *ConfigPtr); static AGESA_STATUS board_GnbPcieSlotReset (UINT32 Func, UINTN Data, VOID *ConfigPtr); diff --git a/src/mainboard/elmex/pcm205400/buildOpts.c b/src/mainboard/elmex/pcm205400/buildOpts.c index fa0d5b68f9..d39b25baf7 100644 --- a/src/mainboard/elmex/pcm205400/buildOpts.c +++ b/src/mainboard/elmex/pcm205400/buildOpts.c @@ -12,7 +12,6 @@ * */ -#include <stdlib.h> /* Select the cpu family. */ |