From: Krzysztof Kozlowski Date: Thu, 29 Jul 2021 10:40:18 +0000 (+0200) Subject: nfc: fdp: use unsigned int as loop iterator X-Git-Tag: xarray-5.18~1187^2~361^2~4 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c3e26b6dc1b4e3e8f57be4f004b1f2a410c5c468;p=users%2Fwilly%2Fxarray.git nfc: fdp: use unsigned int as loop iterator Loop iterators are simple integers, no point to optimize the size and use u8. It only raises the question whether the variable is used in some other context. Signed-off-by: Krzysztof Kozlowski Signed-off-by: David S. Miller --- diff --git a/drivers/nfc/fdp/fdp.c b/drivers/nfc/fdp/fdp.c index 650a140bea46..3f5fba922c4d 100644 --- a/drivers/nfc/fdp/fdp.c +++ b/drivers/nfc/fdp/fdp.c @@ -611,7 +611,8 @@ static int fdp_nci_core_get_config_rsp_packet(struct nci_dev *ndev, struct fdp_nci_info *info = nci_get_drvdata(ndev); struct device *dev = &info->phy->i2c_dev->dev; struct nci_core_get_config_rsp *rsp = (void *) skb->data; - u8 i, *p; + unsigned int i; + u8 *p; if (rsp->status == NCI_STATUS_OK) {