root/drivers/usb/common/common.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. ledtrig_usb_init
  2. ledtrig_usb_exit

   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 */

/* [<][>][^][v][top][bottom][index][help] */