summaryrefslogtreecommitdiffstats
path: root/util/inteltool/gfx.c
diff options
context:
space:
mode:
authorMichael Niewöhner <foss@mniewoehner.de>2020-03-13 19:08:21 +0100
committerFelix Held <felix-coreboot@felixheld.de>2020-03-21 22:12:10 +0000
commit10d522133ef7531c1777c89b1a9ba3cdca5e25ee (patch)
tree32b4a98ed45c12b9a5fd586fb869c150070d2397 /util/inteltool/gfx.c
parent96cf680c3d5e4f98ddc05ccb7d50f48452014d0b (diff)
downloadcoreboot-10d522133ef7531c1777c89b1a9ba3cdca5e25ee.tar.gz
coreboot-10d522133ef7531c1777c89b1a9ba3cdca5e25ee.tar.bz2
coreboot-10d522133ef7531c1777c89b1a9ba3cdca5e25ee.zip
util/inteltool: use read* macros instead of pointers
Switch to using read* macros instead of pointers. Change-Id: I1fe54b496a5998597b79cdd7108f3a4075744a78 Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39503 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/inteltool/gfx.c')
-rw-r--r--util/inteltool/gfx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/inteltool/gfx.c b/util/inteltool/gfx.c
index ffcf75c85985..083e6c397def 100644
--- a/util/inteltool/gfx.c
+++ b/util/inteltool/gfx.c
@@ -39,8 +39,8 @@ int print_gfx(struct pci_dev *gfx)
exit(1);
}
for (i = 0; i < MMIO_SIZE; i += 4) {
- if (*(uint32_t *)(mmio + i))
- printf("0x%06x: 0x%08x\n", i, *(uint32_t *)(mmio + i));
+ if (read32(mmio + i))
+ printf("0x%06x: 0x%08x\n", i, read32(mmio + i));
}
unmap_physical((void *)mmio, MMIO_SIZE);
return 0;