diff options
author | Andy Shevchenko <[email protected]> | 2022-07-10 00:16:51 +0300 |
---|---|---|
committer | Hans de Goede <[email protected]> | 2022-07-10 17:59:51 +0200 |
commit | ed7adc2b69c6492ebb2733d8914c6d765ec9770b (patch) | |
tree | 39f4cc7cab2336d29e6af77ba97666cb17207e2a | |
parent | 14a9aa99aca6c28728de357b7be3c9ef4f2a5bb6 (diff) |
platform/x86: serial-multi-instantiate: Use while (i--) pattern to clean up
Use more natural while (i--) patter to clean up allocated resources.
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Hans de Goede <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Hans de Goede <[email protected]>
-rw-r--r-- | drivers/platform/x86/serial-multi-instantiate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/platform/x86/serial-multi-instantiate.c b/drivers/platform/x86/serial-multi-instantiate.c index 970ede0ff002..0a2335693f4f 100644 --- a/drivers/platform/x86/serial-multi-instantiate.c +++ b/drivers/platform/x86/serial-multi-instantiate.c @@ -70,11 +70,11 @@ static int smi_get_irq(struct platform_device *pdev, struct acpi_device *adev, static void smi_devs_unregister(struct smi *smi) { - while (smi->i2c_num > 0) - i2c_unregister_device(smi->i2c_devs[--smi->i2c_num]); + while (smi->i2c_num--) + i2c_unregister_device(smi->i2c_devs[smi->i2c_num]); - while (smi->spi_num > 0) - spi_unregister_device(smi->spi_devs[--smi->spi_num]); + while (smi->spi_num--) + spi_unregister_device(smi->spi_devs[smi->spi_num]); } /** |