lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [day] [month] [year] [list]
Date:   Mon, 16 Dec 2019 09:37:36 +0800
From:   Chen Zhou <chenzhou10@...wei.com>
To:     <robert.moore@...el.com>, <erik.schmauss@...el.com>,
        <rafael.j.wysocki@...el.com>
CC:     <linux-acpi@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
        <chenzhou10@...wei.com>
Subject: [PATCH] ACPICA: debugger: remove unnecessary parentheses

Remove unnecessary parentheses found by checkpatch

Signed-off-by: Chen Zhou <chenzhou10@...wei.com>
---
 drivers/acpi/acpica/dbinput.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/acpi/acpica/dbinput.c b/drivers/acpi/acpica/dbinput.c
index e1632b3..8470df94 100644
--- a/drivers/acpi/acpica/dbinput.c
+++ b/drivers/acpi/acpica/dbinput.c
@@ -738,7 +738,7 @@ acpi_db_command_dispatch(char *input_buffer,
 	case CMD_NULL:
 
 		if (op) {
-			return (AE_OK);
+			return AE_OK;
 		}
 		break;
 
@@ -818,7 +818,7 @@ acpi_db_command_dispatch(char *input_buffer,
 			acpi_os_printf
 			    ("Invalid adress space ID: must be between 0 and %u inclusive\n",
 			     ACPI_NUM_PREDEFINED_REGIONS - 1);
-			return (AE_OK);
+			return AE_OK;
 		}
 
 		status = acpi_db_display_fields((u32)temp64);
@@ -827,7 +827,7 @@ acpi_db_command_dispatch(char *input_buffer,
 	case CMD_GO:
 
 		acpi_gbl_cm_single_step = FALSE;
-		return (AE_OK);
+		return AE_OK;
 
 	case CMD_HANDLERS:
 
@@ -879,7 +879,7 @@ acpi_db_command_dispatch(char *input_buffer,
 
 		if (op) {
 			acpi_gbl_cm_single_step = TRUE;
-			return (AE_OK);
+			return AE_OK;
 		}
 		break;
 
-- 
2.7.4

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ