elog: Fix typecast issues related to 64-bit compilation.
BUG=chrome-os-partner:33764 BRANCH=None TEST=Compiles successfully for ryu and nyan. Change-Id: I5e38966fe06aa3302a7c1b536f5ffd8bb22d4947 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://chromium-review.googlesource.com/229413 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Commit-Queue: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
parent
55344a9518
commit
7c3db3d5c8
1 changed files with 20 additions and 17 deletions
|
|
@ -108,25 +108,10 @@ static inline u32 elog_flash_address_to_offset(u8 *address)
|
|||
|
||||
return (u32)address - ((u32)~0UL - rom_size + 1);
|
||||
#else
|
||||
return (u32)address;
|
||||
return (u32)(uintptr_t)address;
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert a flash offset into a memory mapped flash address
|
||||
*/
|
||||
static inline u8* elog_flash_offset_to_address(u32 offset)
|
||||
{
|
||||
u32 rom_size;
|
||||
|
||||
if (!elog_spi)
|
||||
return NULL;
|
||||
|
||||
rom_size = get_rom_size();
|
||||
|
||||
return (u8*)((u32)~0UL - rom_size + 1 + offset);
|
||||
}
|
||||
|
||||
/*
|
||||
* Pointer to an event log header in the event data area
|
||||
*/
|
||||
|
|
@ -210,7 +195,7 @@ static int elog_is_header_valid(struct elog_header *header)
|
|||
return 0;
|
||||
}
|
||||
if (header->header_size != sizeof(*header)) {
|
||||
printk(BIOS_ERR, "ELOG: header size mismatch %u != %u\n",
|
||||
printk(BIOS_ERR, "ELOG: header size mismatch %u != %zu\n",
|
||||
header->header_size, sizeof(*header));
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -452,6 +437,23 @@ static int elog_shrink(void)
|
|||
}
|
||||
|
||||
#ifndef __SMM__
|
||||
#if IS_ENABLED(CONFIG_ARCH_X86)
|
||||
|
||||
/*
|
||||
* Convert a flash offset into a memory mapped flash address
|
||||
*/
|
||||
static inline u8 *elog_flash_offset_to_address(u32 offset)
|
||||
{
|
||||
u32 rom_size;
|
||||
|
||||
if (!elog_spi)
|
||||
return NULL;
|
||||
|
||||
rom_size = get_rom_size();
|
||||
|
||||
return (u8 *)((u32)~0UL - rom_size + 1 + offset);
|
||||
}
|
||||
|
||||
/*
|
||||
* Fill out SMBIOS Type 15 table entry so the
|
||||
* event log can be discovered at runtime.
|
||||
|
|
@ -492,6 +494,7 @@ int elog_smbios_write_type15(unsigned long *current, int handle)
|
|||
return len;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Clear the entire event log
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue