mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
sandbox: cast to pointer from integer of different size
Building sandbox_defconfig on ARMv7 with HOST_32BIT=y results in:
drivers/misc/qfw_sandbox.c:51:25: warning:
cast to pointer from integer of different size [-Wint-to-pointer-cast]
51 | void *address = (void *)be64_to_cpu(dma->address);
Add the missing type conversion.
Fixes: 69512551aa
("test: qemu: add qfw sandbox driver, dm tests, qemu tests")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
4f6500aa1a
commit
d4462ba044
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ static void qfw_sandbox_read_entry_dma(struct udevice *dev, struct qfw_dma *dma)
|
|||
{
|
||||
u16 entry;
|
||||
u32 control = be32_to_cpu(dma->control);
|
||||
void *address = (void *)be64_to_cpu(dma->address);
|
||||
void *address = (void *)(uintptr_t)be64_to_cpu(dma->address);
|
||||
u32 length = be32_to_cpu(dma->length);
|
||||
struct qfw_sandbox_plat *plat = dev_get_plat(dev);
|
||||
struct fw_cfg_file *file;
|
||||
|
|
Loading…
Reference in a new issue