Re: [PATCH v8 4/7] PCI: Use unsigned int i in pcie_read_tlp_log()

2025-01-03 Thread Jonathan Cameron
On Wed, 18 Dec 2024 16:37:44 +0200 Ilpo Järvinen 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 Whilst I find it hard to care, it is harmless so up to Bjorn if he wants the churn or not. Reviewed-by: Jona

[PATCH v8 4/7] PCI: Use unsigned int i in pcie_read_tlp_log()

2024-12-18 Thread Ilpo Järvinen
Loop variable i counting from 0 upwards does not need to be signed so make it unsigned int. Signed-off-by: Ilpo Järvinen --- 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..65ac7b5d8a