]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
usb: gadget: udc-xilinx: Remove trailing space after \n newline
authorColin Ian King <colin.i.king@gmail.com>
Sun, 1 Sep 2024 16:23:57 +0000 (17:23 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Sep 2024 07:53:21 +0000 (09:53 +0200)
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>
drivers/usb/gadget/udc/udc-xilinx.c

index 74590f93ea617dad1136161235bbfa789355f403..ebc45565c33e54e7d51d22f8a728a17e88330299 100644 (file)
@@ -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;