Use platform_get_resource() to fetch the memory resource instead of open-coded variant. Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> --- drivers/vfio/platform/vfio_platform.c | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/drivers/vfio/platform/vfio_platform.c b/drivers/vfio/platform/vfio_platform.c index 1e2769010089..d216126a31c4 100644 --- a/drivers/vfio/platform/vfio_platform.c +++ b/drivers/vfio/platform/vfio_platform.c @@ -25,19 +25,13 @@ static struct resource *get_platform_resource(struct vfio_platform_device *vdev, int num) { struct platform_device *dev = (struct platform_device *) vdev->opaque; - int i; + struct resource *res; - for (i = 0; i < dev->num_resources; i++) { - struct resource *r = &dev->resource[i]; + res = platform_get_resource(dev, IORESOURCE_MEM, num); + if (res) + return res; - if (resource_type(r) & (IORESOURCE_MEM|IORESOURCE_IO)) { - if (!num) - return r; - - num--; - } - } - return NULL; + return platform_get_resource(dev, IORESOURCE_IO, num); } static int get_platform_irq(struct vfio_platform_device *vdev, int i) -- 2.27.0