All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/4] ACPI: platform: Get rid of redundant 'else'
@ 2022-08-31 14:03 Andy Shevchenko
  2022-08-31 14:03 ` [PATCH v2 2/4] ACPI: platform: Remove redundant print on -ENOMEM Andy Shevchenko
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andy Shevchenko @ 2022-08-31 14:03 UTC (permalink / raw)
  To: Andy Shevchenko, linux-acpi, linux-kernel; +Cc: Rafael J. Wysocki, Len Brown

In the snippets like the following

	if (...)
		return / goto / break / continue ...;
	else
		...

the 'else' is redundant. Get rid of it.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
v2: no changes
 drivers/acpi/acpi_platform.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/acpi/acpi_platform.c b/drivers/acpi/acpi_platform.c
index 1a1c78b23fba..75e26528056d 100644
--- a/drivers/acpi/acpi_platform.c
+++ b/drivers/acpi/acpi_platform.c
@@ -114,9 +114,9 @@ struct platform_device *acpi_create_platform_device(struct acpi_device *adev,
 
 	INIT_LIST_HEAD(&resource_list);
 	count = acpi_dev_get_resources(adev, &resource_list, NULL, NULL);
-	if (count < 0) {
+	if (count < 0)
 		return NULL;
-	} else if (count > 0) {
+	if (count > 0) {
 		resources = kcalloc(count, sizeof(struct resource),
 				    GFP_KERNEL);
 		if (!resources) {
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-09-03 18:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-31 14:03 [PATCH v2 1/4] ACPI: platform: Get rid of redundant 'else' Andy Shevchenko
2022-08-31 14:03 ` [PATCH v2 2/4] ACPI: platform: Remove redundant print on -ENOMEM Andy Shevchenko
2022-08-31 14:03 ` [PATCH v2 3/4] ACPI: platform: Use sizeof(*pointer) instead of sizeof(type) Andy Shevchenko
2022-08-31 14:03 ` [PATCH v2 4/4] ACPI: platform: Sort forbidden_id_list[] in ascending order Andy Shevchenko
2022-09-03 18:54 ` [PATCH v2 1/4] ACPI: platform: Get rid of redundant 'else' Rafael J. Wysocki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.