HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43953 )
Change subject: src/southbridge: Add missing <{stdbool,stdint}.h> ......................................................................
src/southbridge: Add missing <{stdbool,stdint}.h>
Change-Id: Ie681c44b97db9602743977f8db47b84628bdba78 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/southbridge/intel/i82801gx/sata.c M src/southbridge/intel/lynxpoint/chip.h M src/southbridge/intel/lynxpoint/pcie.c 3 files changed, 5 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/53/43953/1
diff --git a/src/southbridge/intel/i82801gx/sata.c b/src/southbridge/intel/i82801gx/sata.c index 715d670..44118ae 100644 --- a/src/southbridge/intel/i82801gx/sata.c +++ b/src/southbridge/intel/i82801gx/sata.c @@ -5,6 +5,9 @@ #include <device/pci.h> #include <device/pci_ops.h> #include <device/pci_ids.h> +#include <stdbool.h> +#include <stdint.h> + #include "chip.h" #include "i82801gx.h" #include "sata.h" diff --git a/src/southbridge/intel/lynxpoint/chip.h b/src/southbridge/intel/lynxpoint/chip.h index ed362a2..8b3b115 100644 --- a/src/southbridge/intel/lynxpoint/chip.h +++ b/src/southbridge/intel/lynxpoint/chip.h @@ -3,6 +3,7 @@ #ifndef SOUTHBRIDGE_INTEL_LYNXPOINT_CHIP_H #define SOUTHBRIDGE_INTEL_LYNXPOINT_CHIP_H
+#include <stdbool.h> #include <stdint.h>
struct southbridge_intel_lynxpoint_config { diff --git a/src/southbridge/intel/lynxpoint/pcie.c b/src/southbridge/intel/lynxpoint/pcie.c index d8e9d54..f513c46 100644 --- a/src/southbridge/intel/lynxpoint/pcie.c +++ b/src/southbridge/intel/lynxpoint/pcie.c @@ -11,6 +11,7 @@ #include <device/pci_ops.h> #include "pch.h" #include <southbridge/intel/common/gpio.h> +#include <stdbool.h> #include <stdint.h> #include "chip.h"
HAOUAS Elyes has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/43953 )
Change subject: src/southbridge: Add missing <{stdbool,stdint}.h> ......................................................................
Abandoned
see 43941