Commit 5ad7b85b authored by Akshay Joshi's avatar Akshay Joshi Committed by Greg Kroah-Hartman

USBIP: Remove unnecessary whitespace before newline characters.

In this file, in certain places, newline characters in pr_debug() calls had
whitespace before them. This patch removes this extraneous whitespace.
Signed-off-by: default avatarAkshay Joshi <me@akshayjoshi.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent cf77acfc
...@@ -204,7 +204,7 @@ static void usbip_dump_usb_ctrlrequest(struct usb_ctrlrequest *cmd) ...@@ -204,7 +204,7 @@ static void usbip_dump_usb_ctrlrequest(struct usb_ctrlrequest *cmd)
pr_debug("CLEAR_FEAT\n"); pr_debug("CLEAR_FEAT\n");
break; break;
case USB_REQ_SET_FEATURE: case USB_REQ_SET_FEATURE:
pr_debug("SET_FEAT \n"); pr_debug("SET_FEAT\n");
break; break;
case USB_REQ_SET_ADDRESS: case USB_REQ_SET_ADDRESS:
pr_debug("SET_ADDRRS\n"); pr_debug("SET_ADDRRS\n");
...@@ -231,14 +231,14 @@ static void usbip_dump_usb_ctrlrequest(struct usb_ctrlrequest *cmd) ...@@ -231,14 +231,14 @@ static void usbip_dump_usb_ctrlrequest(struct usb_ctrlrequest *cmd)
pr_debug("SYNC_FRAME\n"); pr_debug("SYNC_FRAME\n");
break; break;
default: default:
pr_debug("REQ(%02X) \n", cmd->bRequest); pr_debug("REQ(%02X)\n", cmd->bRequest);
break; break;
} }
usbip_dump_request_type(cmd->bRequestType); usbip_dump_request_type(cmd->bRequestType);
} else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_CLASS) { } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_CLASS) {
pr_debug("CLASS \n"); pr_debug("CLASS\n");
} else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_VENDOR) { } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_VENDOR) {
pr_debug("VENDOR \n"); pr_debug("VENDOR\n");
} else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_RESERVED) { } else if ((cmd->bRequestType & USB_TYPE_MASK) == USB_TYPE_RESERVED) {
pr_debug("RESERVED\n"); pr_debug("RESERVED\n");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment