diff options
author | Patrick Rudolph <siro@das-labor.org> | 2019-11-29 19:27:37 +0100 |
---|---|---|
committer | Patrick Rudolph <siro@das-labor.org> | 2020-09-26 17:31:08 +0000 |
commit | 819c2067424fb49347b38fc2a45ab0ad74b93f31 (patch) | |
tree | 799ecb49096c8fc8c4aa976208babd7401744d81 /src/southbridge/intel/ibexpeak/azalia.c | |
parent | a32df26ec0759bbac2080f6d9a437320f5d61157 (diff) |
ironlake: Fix compilation on x86_64
Use correct datasize to compile on x86_64.
Tested on Lenovo T410 with additional x86_64 patches.
Change-Id: I213b2b1c5de174b5c14b67d1b437d19c656d13fd
Signed-off-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37371
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/southbridge/intel/ibexpeak/azalia.c')
-rw-r--r-- | src/southbridge/intel/ibexpeak/azalia.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/ibexpeak/azalia.c b/src/southbridge/intel/ibexpeak/azalia.c index f686514310..011bde60b1 100644 --- a/src/southbridge/intel/ibexpeak/azalia.c +++ b/src/southbridge/intel/ibexpeak/azalia.c @@ -212,7 +212,7 @@ static void azalia_init(struct device *dev) // NOTE this will break as soon as the Azalia get's a bar above 4G. // Is there anything we can do about it? base = res2mmio(res, 0, 0); - printk(BIOS_DEBUG, "Azalia: base = %08x\n", (u32)base); + printk(BIOS_DEBUG, "Azalia: base = %p\n", base); if (RCBA32(0x2030) & (1 << 31)) { reg32 = pci_read_config32(dev, 0x120); |