xref: /linux/drivers/usb/common/common.h (revision c83eeec79ff64f777cbd59a8bd15d0a3fe1f92c0)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 
3 #ifndef __LINUX_USB_COMMON_H
4 #define __LINUX_USB_COMMON_H
5 
6 #if defined(CONFIG_USB_LED_TRIG)
7 void ledtrig_usb_init(void);
8 void ledtrig_usb_exit(void);
9 #else
10 static inline void ledtrig_usb_init(void) { }
11 static inline void ledtrig_usb_exit(void) { }
12 #endif
13 
14 #endif	/* __LINUX_USB_COMMON_H */
15