aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/dwc2/debug.h
diff options
context:
space:
mode:
authorJohn Youn <John.Youn@synopsys.com>2017-01-17 23:30:58 -0500
committerFelipe Balbi <felipe.balbi@linux.intel.com>2017-01-24 04:04:18 -0500
commit3b1920e782287af73bc234ace0f7d6db31a324d3 (patch)
tree7f74bb0377ed8f1e6ad48a573b39089e6803b214 /drivers/usb/dwc2/debug.h
parent9da5197475a09e51a467388308f14dcbdcee8ba9 (diff)
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 <johnyoun@synopsys.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/dwc2/debug.h')
-rw-r--r--drivers/usb/dwc2/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/dwc2/debug.h b/drivers/usb/dwc2/debug.h
index d3e52dd32f57..8222783e6822 100644
--- a/drivers/usb/dwc2/debug.h
+++ b/drivers/usb/dwc2/debug.h
@@ -17,8 +17,8 @@
17#include "core.h" 17#include "core.h"
18 18
19#ifdef CONFIG_DEBUG_FS 19#ifdef CONFIG_DEBUG_FS
20int dwc2_debugfs_init(struct dwc2_hsotg *); 20int dwc2_debugfs_init(struct dwc2_hsotg *hsotg);
21void dwc2_debugfs_exit(struct dwc2_hsotg *); 21void dwc2_debugfs_exit(struct dwc2_hsotg *hsotg);
22#else 22#else
23static inline int dwc2_debugfs_init(struct dwc2_hsotg *hsotg) 23static inline int dwc2_debugfs_init(struct dwc2_hsotg *hsotg)
24{ return 0; } 24{ return 0; }