Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Colin Ian King and committed by
Greg Kroah-Hartman
b2430136 27e12d5a

+1 -1
+1 -1
drivers/usb/gadget/udc/udc-xilinx.c
··· 947 947 ep->desc = NULL; 948 948 ep->ep_usb.desc = NULL; 949 949 950 - dev_dbg(udc->dev, "USB Ep %d disable\n ", ep->epnumber); 950 + dev_dbg(udc->dev, "USB Ep %d disable\n", ep->epnumber); 951 951 /* Disable the endpoint.*/ 952 952 epcfg = udc->read_fn(udc->addr + ep->offset); 953 953 epcfg &= ~XUSB_EP_CFG_VALID_MASK;