mirror of https://github.com/torvalds/linux.git
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 <colin.i.king@gmail.com> Link: https://lore.kernel.org/r/20240901162357.144222-1-colin.i.king@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
27e12d5aa4
commit
b24301364a
|
|
@ -947,7 +947,7 @@ static int xudc_ep_disable(struct usb_ep *_ep)
|
|||
ep->desc = NULL;
|
||||
ep->ep_usb.desc = NULL;
|
||||
|
||||
dev_dbg(udc->dev, "USB Ep %d disable\n ", ep->epnumber);
|
||||
dev_dbg(udc->dev, "USB Ep %d disable\n", ep->epnumber);
|
||||
/* Disable the endpoint.*/
|
||||
epcfg = udc->read_fn(udc->addr + ep->offset);
|
||||
epcfg &= ~XUSB_EP_CFG_VALID_MASK;
|
||||
|
|
|
|||
Loading…
Reference in New Issue