From: Tom Rini Date: Wed, 10 May 2017 19:20:15 +0000 (-0400) Subject: gpio-uclass.c: Fix comparison of unsigned expression warning X-Git-Tag: v2017.07-rc1~288 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=758979101d161704dc9c1e42db98a728724f59d0;p=platform%2Fkernel%2Fu-boot.git gpio-uclass.c: Fix comparison of unsigned expression warning We declare that gpio_base (which is the base for counting gpios, not an address) is unsigned. Therefore the comparison with >= 0 is always true. As the desire is to allow for this base number to be 0, we can just drop this check. Reported by clang-3.8. Cc: Simon Glass Signed-off-by: Tom Rini Reviewed-by: Simon Glass --- diff --git a/drivers/gpio/gpio-uclass.c b/drivers/gpio/gpio-uclass.c index 9ab9df4..ba48040 100644 --- a/drivers/gpio/gpio-uclass.c +++ b/drivers/gpio/gpio-uclass.c @@ -68,7 +68,7 @@ int dm_gpio_lookup_name(const char *name, struct gpio_desc *desc) if (numeric != -1) { offset = numeric - uc_priv->gpio_base; /* Allow GPIOs to be numbered from 0 */ - if (offset >= 0 && offset < uc_priv->gpio_count) + if (offset < uc_priv->gpio_count) break; }