diff options
author | Naresh G Solanki <naresh.solanki@intel.com> | 2016-09-08 13:25:30 +0530 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-09-12 19:53:00 +0200 |
commit | 55eee48b0e5655ab16d4b7ed873252cb956e3cd1 (patch) | |
tree | 255d1573cc55d671541a1af3f0b6dc4bb66a56d1 /src | |
parent | e8c2e839736917e25ddbfc6a84daf1b7ad035c74 (diff) |
driver/fsp2_0: Include stdint header file in api.h
'bool' type is reported undefined due to missing stdint.h inclusion,
Fix it by including the same.
Change-Id: Ib09c121471bd8c490442330a478145a7d1d8855f
Signed-off-by: Naresh G Solanki <naresh.solanki@intel.com>
Reviewed-on: https://review.coreboot.org/16538
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/drivers/intel/fsp2_0/include/fsp/api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/intel/fsp2_0/include/fsp/api.h b/src/drivers/intel/fsp2_0/include/fsp/api.h index b0436e8290..553fc52d01 100644 --- a/src/drivers/intel/fsp2_0/include/fsp/api.h +++ b/src/drivers/intel/fsp2_0/include/fsp/api.h @@ -14,6 +14,7 @@ #define _FSP2_0_API_H_ #include <stddef.h> +#include <stdint.h> #include <fsp/soc_binding.h> #define FSP_SUCCESS EFI_SUCCESS |