diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-01-12 08:29:58 +0100 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-01-13 20:27:48 +0000 |
commit | 47f5a087ec14601a95f33142beaa84f9f33c3228 (patch) | |
tree | ffc6c104398d2b4af2c33402b59d342a30462f53 /src/lib | |
parent | 363ac8b6aef3fa252f06086db4956cb9d703b556 (diff) |
lib/fw_config: Remove redundant stdbool and stdint
<types.h> already includes <stdbool.h> and <stdint.h>
Change-Id: Ie8676769127d21a3b4693ed947a7231b94e99241
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79911
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/fw_config.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/fw_config.c b/src/lib/fw_config.c index 268be07b68..02e2a7dadd 100644 --- a/src/lib/fw_config.c +++ b/src/lib/fw_config.c @@ -9,8 +9,6 @@ #include <fw_config.h> #include <inttypes.h> #include <lib.h> -#include <stdbool.h> -#include <stdint.h> #include <drivers/vpd/vpd.h> uint64_t fw_config_get(void) |