diff options
author | 2024-08-31 21:34:06 +0200 | |
---|---|---|
committer | 2024-09-03 09:53:17 +0200 | |
commit | 27e12d5aa4f9b0cc7b15050bc560c75aaaa8695b (patch) | |
tree | b9151729f8439f52c6f9472f99b0d1b1dfd18536 | |
parent | usb: dwc2: Adjust the timing of USB Driver Interrupt Registration in the Crashkernel Scenario (diff) | |
download | wireguard-linux-27e12d5aa4f9b0cc7b15050bc560c75aaaa8695b.tar.xz wireguard-linux-27e12d5aa4f9b0cc7b15050bc560c75aaaa8695b.zip |
usb: chipidea: npcm: Fix coding style with missing space
Fixed coding style issue: added missing space.
Signed-off-by: Andreas Kühn <andreas.kuehn@diekuehnen.com>
Link: https://lore.kernel.org/r/20240831193407.11302-1-andreas.kuehn@diekuehnen.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/chipidea/ci_hdrc_npcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/chipidea/ci_hdrc_npcm.c b/drivers/usb/chipidea/ci_hdrc_npcm.c index b14127873c55..c89c68f41ccc 100644 --- a/drivers/usb/chipidea/ci_hdrc_npcm.c +++ b/drivers/usb/chipidea/ci_hdrc_npcm.c @@ -28,7 +28,7 @@ static int npcm_udc_notify_event(struct ci_hdrc *ci, unsigned event) hw_write(ci, OP_USBMODE, 0xffffffff, 0x0); break; default: - dev_dbg(dev, "unknown ci_hdrc event (%d)\n",event); + dev_dbg(dev, "unknown ci_hdrc event (%d)\n", event); break; } |