diff options
author | Roger Pau Monne <roger.pau@citrix.com> | 2015-08-26 16:51:01 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-08-26 15:47:00 +0000 |
commit | 5cd34e2f15e1bf562fa80f013995d77429ea784f (patch) | |
tree | 5ccf18635148fff72b372b0ab44fadefaa9b1da3 /util/inteltool | |
parent | e2473c5950b95864879b84619a446394cf8c69be (diff) |
inteltool: fix build for FreeBSD
Replace usage of u<bitness> types with proper uint<bitness>_t types.
Change-Id: I8359d70304a138b29bfc1358af77af26b2bc8682
Signed-off-by: Roger Pau Monne <roger.pau@citrix.com>
Reviewed-on: http://review.coreboot.org/11364
Tested-by: build bot (Jenkins)
Reviewed-by: Idwer Vollering <vidwer@gmail.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/inteltool')
-rw-r--r-- | util/inteltool/gfx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/inteltool/gfx.c b/util/inteltool/gfx.c index 1061242071..f9b1fba17a 100644 --- a/util/inteltool/gfx.c +++ b/util/inteltool/gfx.c @@ -27,9 +27,9 @@ int print_gfx(struct pci_dev *gfx) { - u64 mmio_phys; - u8 *mmio; - u32 i; + uint64_t mmio_phys; + uint8_t *mmio; + uint32_t i; if (!gfx) { printf ("No IGD found\n"); return 0; |