mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
812086d362
The USB gadget subsystem wants to use the USB debugfs root directory, so move it to the common "core" USB code so that it is properly initialized and removed as needed. In order to properly do this, we need to load the common code before the usb core code, when everything is linked into the kernel, so reorder the link order of the code. Also as the usb common code has the possibility of the led trigger logic to be merged into it, handle the build option properly by only having one module init/exit function and have the common code initialize the led trigger if needed. Reported-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Cc: Felipe Balbi <felipe.balbi@linux.intel.com> Tested-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15 lines
330 B
C
15 lines
330 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __LINUX_USB_COMMON_H
|
|
#define __LINUX_USB_COMMON_H
|
|
|
|
#if defined(CONFIG_USB_LED_TRIG)
|
|
void ledtrig_usb_init(void);
|
|
void ledtrig_usb_exit(void);
|
|
#else
|
|
static inline void ledtrig_usb_init(void) { }
|
|
static inline void ledtrig_usb_exit(void) { }
|
|
#endif
|
|
|
|
#endif /* __LINUX_USB_COMMON_H */
|