Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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