Skip to content

Commit b243013

Browse files
ColinIanKinggregkh
authored andcommitted
usb: gadget: udc-xilinx: Remove trailing space after \n newline
There is a extraneous space after a newline in a dev_dbg message. Remove it. Signed-off-by: Colin Ian King <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 27e12d5 commit b243013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/usb/gadget/udc/udc-xilinx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ static int xudc_ep_disable(struct usb_ep *_ep)
947947
ep->desc = NULL;
948948
ep->ep_usb.desc = NULL;
949949

950-
dev_dbg(udc->dev, "USB Ep %d disable\n ", ep->epnumber);
950+
dev_dbg(udc->dev, "USB Ep %d disable\n", ep->epnumber);
951951
/* Disable the endpoint.*/
952952
epcfg = udc->read_fn(udc->addr + ep->offset);
953953
epcfg &= ~XUSB_EP_CFG_VALID_MASK;

0 commit comments

Comments
 (0)