diff options
author | Randy Dunlap <[email protected]> | 2023-12-06 10:13:17 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2023-12-11 09:08:12 +0100 |
commit | 5cc623a4edaf383eea39546104084b089f3035ca (patch) | |
tree | 388bd66f1f3d393d83f44822715982c0f92251f6 /drivers/usb/cdns3/cdns3-starfive.c | |
parent | 112345a4046838d97a2bd030a98297ff7e2c9f2d (diff) |
usb: cdns3: starfive: don't misuse /** comment
Use a common C comment "/*" instead of "/**" to prevent a warning
from scripts/kernel-doc.
cdns3-starfive.c:23: warning: expecting prototype for cdns3(). Prototype was for USB_STRAP_HOST() instead
Signed-off-by: Randy Dunlap <[email protected]>
Cc: Minda Chen <[email protected]>
Cc: Peter Chen <[email protected]>
Cc: Pawel Laszczak <[email protected]>
Cc: Roger Quadros <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: <[email protected]>
Acked-by: Peter Chen <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/usb/cdns3/cdns3-starfive.c')
-rw-r--r-- | drivers/usb/cdns3/cdns3-starfive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/cdns3/cdns3-starfive.c b/drivers/usb/cdns3/cdns3-starfive.c index a7265b86e427..c04d196abd87 100644 --- a/drivers/usb/cdns3/cdns3-starfive.c +++ b/drivers/usb/cdns3/cdns3-starfive.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/** +/* * cdns3-starfive.c - StarFive specific Glue layer for Cadence USB Controller * * Copyright (C) 2023 StarFive Technology Co., Ltd. |