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>] [day] [month] [year] [list]
Date:   Sat, 30 Sep 2023 22:38:51 +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 3/3] drivers: usb: Remove unnecessary spaces before function pointer arguments

Fixed formating error where unnecessary spaces were included before
function pointer arguments and was flagged as a checkpatch issue.

Signed-off-by: Jonathan Bergh <bergh.jonathan@...il.com>
---
 drivers/usb/atm/usbatm.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/atm/usbatm.h b/drivers/usb/atm/usbatm.h
index 500c91b418e4..5b1719a58959 100644
--- a/drivers/usb/atm/usbatm.h
+++ b/drivers/usb/atm/usbatm.h
@@ -74,20 +74,20 @@ struct usbatm_driver {
 	const char *driver_name;
 
 	/* init device ... can sleep, or cause probe() failure */
-	int (*bind) (struct usbatm_data *, struct usb_interface *,
+	int (*bind)(struct usbatm_data *, struct usb_interface *,
 		     const struct usb_device_id *id);
 
 	/* additional device initialization that is too slow to be done in probe() */
-	int (*heavy_init) (struct usbatm_data *, struct usb_interface *);
+	int (*heavy_init)(struct usbatm_data *, struct usb_interface *);
 
 	/* cleanup device ... can sleep, but can't fail */
-	void (*unbind) (struct usbatm_data *, struct usb_interface *);
+	void (*unbind)(struct usbatm_data *, struct usb_interface *);
 
 	/* init ATM device ... can sleep, or cause ATM initialization failure */
-	int (*atm_start) (struct usbatm_data *, struct atm_dev *);
+	int (*atm_start)(struct usbatm_data *, struct atm_dev *);
 
 	/* cleanup ATM device ... can sleep, but can't fail */
-	void (*atm_stop) (struct usbatm_data *, struct atm_dev *);
+	void (*atm_stop)(struct usbatm_data *, struct atm_dev *);
 
 	int bulk_in;	/* bulk rx endpoint */
 	int isoc_in;	/* isochronous rx endpoint */
-- 
2.34.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ