Fix casts when compiling coreboot-specific code for 64-bit EFI.
This commit is contained in:
parent
93d8479b70
commit
4aa237c8a4
3 changed files with 7 additions and 2 deletions
|
@ -331,7 +331,7 @@ init_cbfsdisk (void)
|
|||
struct cbfs_header *head;
|
||||
|
||||
ptr = *(grub_uint32_t *) 0xfffffffc;
|
||||
head = (struct cbfs_header *) ptr;
|
||||
head = (struct cbfs_header *) (grub_addr_t) ptr;
|
||||
|
||||
if (!validate_head (head))
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue