Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68087 )
Change subject: nb/intel/i945/rcven.c: Use read32p() ......................................................................
nb/intel/i945/rcven.c: Use read32p()
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: I1935308cc50abd651b52d6290d66180905c6a521 --- M src/northbridge/intel/i945/rcven.c 1 file changed, 12 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/68087/1
diff --git a/src/northbridge/intel/i945/rcven.c b/src/northbridge/intel/i945/rcven.c index 03b56f1..b8df348 100644 --- a/src/northbridge/intel/i945/rcven.c +++ b/src/northbridge/intel/i945/rcven.c @@ -29,8 +29,8 @@ }
for (i = 0; i < 28; i++) { - read32((void *)addr); - read32((void *)(addr + 0x80)); + read32p(addr); + read32p(addr + 0x80); }
reg32 = mchbar_read32(RCVENMT);