power.h 375 B

1234567891011121314151617
  1. #ifndef __USBAUDIO_POWER_H
  2. #define __USBAUDIO_POWER_H
  3. #ifdef CONFIG_PM
  4. int snd_usb_autoresume(struct snd_usb_audio *chip);
  5. void snd_usb_autosuspend(struct snd_usb_audio *chip);
  6. #else
  7. static inline int snd_usb_autoresume(struct snd_usb_audio *chip)
  8. {
  9. return 0;
  10. }
  11. static inline void snd_usb_autosuspend(struct snd_usb_audio *chip)
  12. {
  13. }
  14. #endif
  15. #endif /* __USBAUDIO_POWER_H */