x86: fsp: Fix cast for 64-bit compilation

Fix a cast in get_next_hob() that causes warnings on 64-bit machines.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
Simon Glass 2017-01-16 07:03:41 -07:00 committed by Bin Meng
parent f9d275b2bd
commit beb4d65e92
1 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ struct hob_guid {
*/
static inline const struct hob_header *get_next_hob(const struct hob_header *hdr)
{
return (const struct hob_header *)((u32)hdr + hdr->len);
return (const struct hob_header *)((uintptr_t)hdr + hdr->len);
}
/**
@ -172,7 +172,7 @@ static inline bool end_of_hob(const struct hob_header *hdr)
*/
static inline void *get_guid_hob_data(const struct hob_header *hdr)
{
return (void *)((u32)hdr + sizeof(struct hob_guid));
return (void *)((uintptr_t)hdr + sizeof(struct hob_guid));
}
/**