From: John Youn Date: Wed, 18 Jan 2017 04:30:58 +0000 (-0800) Subject: usb: dwc2: Add identifier in prototypes X-Git-Tag: v4.14-rc1~1458^2~42^2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b1920e782287af73bc234ace0f7d6db31a324d3;p=platform%2Fkernel%2Flinux-rpi.git usb: dwc2: Add identifier in prototypes Fixes checkpatch warning: WARNING: function definition argument 'struct dwc2_hsotg *' should also have an identifier name Signed-off-by: John Youn Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/dwc2/debug.h b/drivers/usb/dwc2/debug.h index d3e52dd..8222783 100644 --- a/drivers/usb/dwc2/debug.h +++ b/drivers/usb/dwc2/debug.h @@ -17,8 +17,8 @@ #include "core.h" #ifdef CONFIG_DEBUG_FS -int dwc2_debugfs_init(struct dwc2_hsotg *); -void dwc2_debugfs_exit(struct dwc2_hsotg *); +int dwc2_debugfs_init(struct dwc2_hsotg *hsotg); +void dwc2_debugfs_exit(struct dwc2_hsotg *hsotg); #else static inline int dwc2_debugfs_init(struct dwc2_hsotg *hsotg) { return 0; }