iommu: Fix printk arg in of_iommu_get_resv_regions()
authorDaniel Mentz <danielmentz@google.com>
Wed, 8 Nov 2023 06:22:26 +0000 (22:22 -0800)
committerJoerg Roedel <jroedel@suse.de>
Fri, 1 Dec 2023 09:13:49 +0000 (10:13 +0100)
commitc2183b3dcc9dd41b768569ea88bededa58cceebb
tree0c6f7ac2c6584cff1301e7386454eea3c728582b
parente378c7de74620051c3be899a8c2506c25d23049d
iommu: Fix printk arg in of_iommu_get_resv_regions()

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>
drivers/iommu/of_iommu.c