From 68be59ad3b65463ae719b1ab71cb9d84b6f573a1 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 19 Nov 2018 09:18:17 +0100 Subject: commands: mem: Fix compiler warning resource_size_t may be 32bit on several architectures, so explicitly do a 64bit comparison to avoid "warning: comparison of distinct pointer types lacks a cast". Signed-off-by: Sascha Hauer --- commands/mem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/mem.c b/commands/mem.c index cdd7a492d0..a9e12f3e55 100644 --- a/commands/mem.c +++ b/commands/mem.c @@ -96,8 +96,8 @@ static int mem_probe(struct device_d *dev) dev->priv = cdev; cdev->name = (char*)dev->resource[0].name; - cdev->size = min(resource_size(&dev->resource[0]), - (unsigned long long)S64_MAX); + cdev->size = min_t(unsigned long long, resource_size(&dev->resource[0]), + S64_MAX); cdev->ops = &memops; cdev->dev = dev; -- cgit v1.2.3