[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250103163821.00005521@huawei.com>
Date: Fri, 3 Jan 2025 16:38:21 +0000
From: Jonathan Cameron <Jonathan.Cameron@...wei.com>
To: Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
CC: Bjorn Helgaas <bhelgaas@...gle.com>, <linux-pci@...r.kernel.org>,
Krzysztof Wilczyński <kw@...ux.com>, Lukas Wunner
<lukas@...ner.de>, Yazen Ghannam <yazen.ghannam@....com>,
<linux-kernel@...r.kernel.org>, Mahesh J Salgaonkar <mahesh@...ux.ibm.com>,
Oliver O'Halloran <oohall@...il.com>, <linuxppc-dev@...ts.ozlabs.org>
Subject: Re: [PATCH v8 4/7] PCI: Use unsigned int i in pcie_read_tlp_log()
On Wed, 18 Dec 2024 16:37:44 +0200
Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com> wrote:
> Loop variable i counting from 0 upwards does not need to be signed so
> make it unsigned int.
>
> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
Whilst I find it hard to care, it is harmless so up to Bjorn if he
wants the churn or not.
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@...wei.com>
> ---
> drivers/pci/pcie/tlp.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/pci/pcie/tlp.c b/drivers/pci/pcie/tlp.c
> index 2bf15749cd31..65ac7b5d8a87 100644
> --- a/drivers/pci/pcie/tlp.c
> +++ b/drivers/pci/pcie/tlp.c
> @@ -24,7 +24,8 @@
> int pcie_read_tlp_log(struct pci_dev *dev, int where,
> struct pcie_tlp_log *log)
> {
> - int i, ret;
> + unsigned int i;
> + int ret;
>
> memset(log, 0, sizeof(*log));
>
Powered by blists - more mailing lists