fmap: Fix pointer related casts
BUG=None
BRANCH=None
TEST=Compiles
Original-Change-Id: I3a747cb562e7390bb81eca874d6c5aaa54b81e6e
Original-Signed-off-by: Furquan Shaikh <furquan@google.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/209337
Original-Tested-by: Furquan Shaikh <furquan@chromium.org>
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Original-Commit-Queue: Furquan Shaikh <furquan@chromium.org>
(cherry picked from commit 5d3aef321a)
Signed-off-by: Marc Jones <marc.jones@se-eng.com>
Change-Id: Ia8edf54f65947be12a7ae69f6825545fb2aed0f1
Reviewed-on: http://review.coreboot.org/8222
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins)
This commit is contained in:
parent
3e724828b4
commit
c1f5a2e364
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ int find_fmap_entry(const char name[], void **pointer)
|
|||
#endif
|
||||
}
|
||||
|
||||
*pointer = (void*) ((u32)base + area->offset);
|
||||
*pointer = (void*) ((uintptr_t)base + area->offset);
|
||||
printk(BIOS_DEBUG, "FMAP: %s at %p (offset %x)\n",
|
||||
name, *pointer, area->offset);
|
||||
return area->size;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue