All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] acpi: sysfs: Fixed a control flow style issue
@ 2021-06-12 22:34 Clayton Casciato
  2021-06-14 15:36 ` Rafael J. Wysocki
  0 siblings, 1 reply; 3+ messages in thread
From: Clayton Casciato @ 2021-06-12 22:34 UTC (permalink / raw)
  To: rjw; +Cc: lenb, linux-acpi, Clayton Casciato

Fixed coding style issue.

Signed-off-by: Clayton Casciato <majortomtosourcecontrol@gmail.com>
---
 drivers/acpi/sysfs.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/acpi/sysfs.c b/drivers/acpi/sysfs.c
index d6626aba4a6a..0e685ca8f78f 100644
--- a/drivers/acpi/sysfs.c
+++ b/drivers/acpi/sysfs.c
@@ -254,15 +254,15 @@ static int param_get_trace_state(char *buffer, const struct kernel_param *kp)
 {
 	if (!(acpi_gbl_trace_flags & ACPI_TRACE_ENABLED))
 		return sprintf(buffer, "disable\n");
-	else {
-		if (acpi_gbl_trace_method_name) {
-			if (acpi_gbl_trace_flags & ACPI_TRACE_ONESHOT)
-				return sprintf(buffer, "method-once\n");
-			else
-				return sprintf(buffer, "method\n");
-		} else
-			return sprintf(buffer, "enable\n");
-	}
+
+	if (acpi_gbl_trace_method_name) {
+		if (acpi_gbl_trace_flags & ACPI_TRACE_ONESHOT)
+			return sprintf(buffer, "method-once\n");
+		else
+			return sprintf(buffer, "method\n");
+	} else
+		return sprintf(buffer, "enable\n");
+
 	return 0;
 }
 
-- 
2.31.1


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

end of thread, other threads:[~2021-06-16  3:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-12 22:34 [PATCH] acpi: sysfs: Fixed a control flow style issue Clayton Casciato
2021-06-14 15:36 ` Rafael J. Wysocki
2021-06-16  3:52   ` Clayton Casciato

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.