Home
last modified time | relevance | path

Searched hist:e8841b225b5f1826ec33ed6a713d4fb7e09a4256 (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/drivers/iommu/
H A Dof_iommu.cdiff e8841b225b5f1826ec33ed6a713d4fb7e09a4256 Wed Nov 08 00:22:26 CST 2023 Daniel Mentz <danielmentz@google.com> iommu: Fix printk arg in of_iommu_get_resv_regions()

[ Upstream commit c2183b3dcc9dd41b768569ea88bededa58cceebb ]

The variable phys is defined as (struct resource *) which aligns with
the printk format specifier %pr. Taking the address of it results in a
value of type (struct resource **) which is incompatible with the format
specifier %pr. Therefore, remove the address of operator (&).

Fixes: a5bf3cfce8cb ("iommu: Implement of_iommu_get_resv_regions()")
Signed-off-by: Daniel Mentz <danielmentz@google.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Link: https://lore.kernel.org/r/20231108062226.928985-1-danielmentz@google.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>