diff mbox series

[07/13] usb: core: config: remove unnecessary blank lines

Message ID 3d00fef299d94804b5719e36f398e42deb760bc9.1633442131.git.rob@robgreener.com (mailing list archive)
State New, archived
Headers show
Series usb: core: config: fix all checkpatch.pl warnings | expand

Commit Message

Robert Greener Oct. 5, 2021, 1:25 p.m. UTC
This patch fixes the following checkpatch.pl warning at multiple
locations:

CHECK:LINE_SPACING: Please don't use multiple blank lines

Signed-off-by: Robert Greener <rob@robgreener.com>
---
 drivers/usb/core/config.c | 3 ---
 1 file changed, 3 deletions(-)
diff mbox series

Patch

diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c
index 51c590da7651..af88cfe52e92 100644
--- a/drivers/usb/core/config.c
+++ b/drivers/usb/core/config.c
@@ -13,12 +13,10 @@ 
 #include <asm/byteorder.h>
 #include "usb.h"
 
-
 #define USB_MAXALTSETTING		128	/* Hard limit */
 
 #define USB_MAXCONFIG			8	/* Arbitrary limit */
 
-
 static inline const char *plural(int n)
 {
 	return (n == 1 ? "" : "s");
@@ -848,7 +846,6 @@  void usb_destroy_configuration(struct usb_device *dev)
 	dev->config = NULL;
 }
 
-
 /*
  * Get the USB config descriptors, cache and parse'em
  *