diff options
author | Lionel Landwerlin <[email protected]> | 2018-07-28 19:11:56 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2018-08-04 09:39:01 +0100 |
commit | 02ebc064eaad850766cdda06ae41626aadc7d444 (patch) | |
tree | b95743d0175d51b502e786ee02357f1986b24bee | |
parent | db4770ee57e77af035665c2afbea6c089f898579 (diff) |
intel: common: add missing stdint include
Reviewed-by: Eric Engestrom <[email protected]>
-rw-r--r-- | src/intel/common/gen_gem.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/common/gen_gem.h b/src/intel/common/gen_gem.h index 7dd9ae6d548..8df2c249e48 100644 --- a/src/intel/common/gen_gem.h +++ b/src/intel/common/gen_gem.h @@ -24,6 +24,8 @@ #ifndef GEN_GEM_H #define GEN_GEM_H +#include <stdint.h> + static inline uint64_t gen_canonical_address(uint64_t v) { |