From: Nathan Chancellor Date: Sun, 6 May 2018 07:33:33 +0000 (-0700) Subject: staging: wilc1000: Remove unnecessary array index check X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1cbe5fe261a19b4a9a482cd24b12d1d063abaa44;p=linux.git staging: wilc1000: Remove unnecessary array index check This statment triggers GCC's -Wtype-limit since key_index is an unsigned integer so it cannot be less than zero. Signed-off-by: Nathan Chancellor Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c index b499fb987395e..e0015ca6c21a4 100644 --- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c +++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c @@ -1054,7 +1054,7 @@ static int del_key(struct wiphy *wiphy, struct net_device *netdev, } } - if (key_index >= 0 && key_index <= 3 && priv->wep_key_len[key_index]) { + if (key_index <= 3 && priv->wep_key_len[key_index]) { memset(priv->wep_key[key_index], 0, priv->wep_key_len[key_index]); priv->wep_key_len[key_index] = 0;