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:   Sat, 30 Sep 2023 22:36:46 +0200
From:   Jonathan Bergh <bergh.jonathan@...il.com>
To:     gregkh@...uxfoundation.org
Cc:     linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org,
        Jonathan Bergh <bergh.jonathan@...il.com>
Subject: [PATCH 1/3] drivers: usb: Fix block comments whose trailing */ was not on a separate line

Fixed various instances where block comments trailing */ where not on a
separate line and should be.

Signed-off-by: Jonathan Bergh <bergh.jonathan@...il.com>
---
 drivers/usb/atm/cxacru.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c
index 4ce7cba2b48a..ba795a8d3888 100644
--- a/drivers/usb/atm/cxacru.c
+++ b/drivers/usb/atm/cxacru.c
@@ -55,7 +55,8 @@ static const char cxacru_driver_name[] = "cxacru";
 #define POLL_INTERVAL	1	/* secs */
 
 /* commands for interaction with the modem through the control channel before
- * firmware is loaded  */
+ * firmware is loaded
+ */
 enum cxacru_fw_request {
 	FW_CMD_ERR,
 	FW_GET_VER,
@@ -67,7 +68,8 @@ enum cxacru_fw_request {
 };
 
 /* commands for interaction with the modem through the control channel once
- * firmware is loaded  */
+ * firmware is loaded
+ */
 enum cxacru_cm_request {
 	CM_REQUEST_UNDEFINED = 0x80,
 	CM_REQUEST_TEST,
@@ -369,7 +371,8 @@ static ssize_t adsl_state_store(struct device *dev,
 	/* Line status is only updated every second
 	 * and the device appears to only react to
 	 * START/STOP every second too. Wait 1.5s to
-	 * be sure that restart will have an effect. */
+	 * be sure that restart will have an effect.
+	 */
 	if (!strcmp(str_cmd, "restart"))
 		msleep(1500);
 
@@ -1237,7 +1240,8 @@ static void cxacru_unbind(struct usbatm_data *usbatm_instance,
 	BUG_ON(instance->poll_state == CXPOLL_SHUTDOWN);
 
 	/* ensure that status polling continues unless
-	 * it has already stopped */
+	 * it has already stopped
+	 */
 	if (instance->poll_state == CXPOLL_STOPPED)
 		is_polling = 0;
 
-- 
2.34.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ