diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-01-10 18:07:56 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-01-10 18:07:56 (EST) |
commit | f6da483213c5a9ad026c2740eeff120414492a40 (patch) | |
tree | 72c62f49cc617a15a023134c26679c30133aacab /resources/utilities/ich9deblob/src/ich9gen | |
parent | 74adfa0f8c41754d1a74006b6ca5f923fd2af503 (diff) | |
download | libreboot-f6da483213c5a9ad026c2740eeff120414492a40.zip libreboot-f6da483213c5a9ad026c2740eeff120414492a40.tar.gz libreboot-f6da483213c5a9ad026c2740eeff120414492a40.tar.bz2 |
ich9deblob/ich9gen: use portable data types
For those integers that need to be a certain byte size.
Diffstat (limited to 'resources/utilities/ich9deblob/src/ich9gen')
-rw-r--r-- | resources/utilities/ich9deblob/src/ich9gen/mkdescriptor.h | 1 | ||||
-rw-r--r-- | resources/utilities/ich9deblob/src/ich9gen/mkgbe.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/resources/utilities/ich9deblob/src/ich9gen/mkdescriptor.h b/resources/utilities/ich9deblob/src/ich9gen/mkdescriptor.h index c4bbe69..745f11f 100644 --- a/resources/utilities/ich9deblob/src/ich9gen/mkdescriptor.h +++ b/resources/utilities/ich9deblob/src/ich9gen/mkdescriptor.h @@ -20,6 +20,7 @@ #include <stdio.h> #include <string.h> +#include <stdint.h> #include "../descriptor/descriptor.h" /* ROM image sizes in bytes */ diff --git a/resources/utilities/ich9deblob/src/ich9gen/mkgbe.h b/resources/utilities/ich9deblob/src/ich9gen/mkgbe.h index 5c67d83..b7be8b3 100644 --- a/resources/utilities/ich9deblob/src/ich9gen/mkgbe.h +++ b/resources/utilities/ich9deblob/src/ich9gen/mkgbe.h @@ -20,6 +20,7 @@ #include <stdio.h> #include <string.h> +#include <stdint.h> #include "../gbe/gbe.h" struct GBEREGIONRECORD_4K generatedGbeStruct4k(); |