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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 31 Oct 2023 17:25:54 +0100
From:   dimadrumspro@...oo.com
To:     dimadrumspro@...il.com
Cc:     linux-kernel@...r.kernel.org
Subject: [PATCH] Drivers: comedi: drivers: ssv_dnp: fixed a brace coding style issue

From: dimaaac <dimadrumspro@...il.com>

Fixed a coding style issue, as well as a typo (lowercased word)
and removed unnecessary filename comment.

Signed-off-by: dimaaac <dimadrumspro@...il.com>
---
 drivers/comedi/drivers/ssv_dnp.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/comedi/drivers/ssv_dnp.c b/drivers/comedi/drivers/ssv_dnp.c
index 813bd0853b0b..d0747767810b 100644
--- a/drivers/comedi/drivers/ssv_dnp.c
+++ b/drivers/comedi/drivers/ssv_dnp.c
@@ -1,7 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
- * ssv_dnp.c
- * generic comedi driver for SSV Embedded Systems' DIL/Net-PCs
+ * Generic comedi driver for SSV Embedded Systems' DIL/Net-PCs
  * Copyright (C) 2001 Robert Schwebel <robert@...webel.de>
  *
  * COMEDI - Linux Control and Measurement Device Interface
@@ -91,13 +90,13 @@ static int dnp_dio_insn_config(struct comedi_device *dev,
 	if (ret)
 		return ret;
 
-	if (chan < 8) {			/* Port A */
+	if (chan < 8)			/* Port A */
 		mask = 1 << chan;
 		outb(PAMR, CSCIR);
-	} else if (chan < 16) {		/* Port B */
+	else if (chan < 16)		/* Port B */
 		mask = 1 << (chan - 8);
 		outb(PBMR, CSCIR);
-	} else {			/* Port C */
+	else				/* Port C */
 		/*
 		 * We have to pay attention with port C.
 		 * This is the meaning of PCMR:
@@ -109,7 +108,6 @@ static int dnp_dio_insn_config(struct comedi_device *dev,
 		 */
 		mask = 1 << ((chan - 16) * 2);
 		outb(PCMR, CSCIR);
-	}
 
 	val = inb(CSCDR);
 	if (data[0] == COMEDI_OUTPUT)
-- 
2.42.0

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ