#ifndef __USBAUDIO_POWER_H #define __USBAUDIO_POWER_H #ifdef CONFIG_PM int snd_usb_autoresume(struct snd_usb_audio *chip); void snd_usb_autosuspend(struct snd_usb_audio *chip); #else static inline int snd_usb_autoresume(struct snd_usb_audio *chip) { return 0; } static inline void snd_usb_autosuspend(struct snd_usb_audio *chip) { } #endif #endif /* __USBAUDIO_POWER_H */ ='git://git.distanz.ch/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2016-04-19 18:00:20 +0200
committerMark Brown <broonie@kernel.org>2016-06-01 16:18:47 +0100
commit11f9192cc16cd26f16fb0fa2b18ce4440a7a1623 (patch)
tree8078ff8e78a9a35ad834dc0f859f294755047f8c /sound
parentbafcbfe429eb7e35db7dc73a39d40c04d2754f8e (diff)
ASoC: tlv320aix31xx: Add ACPI match for Lenovo 100S
The Lenovo 100S netbook has a codec controller for which there is a driver, but doesn't know how to access the device. This adds the necessary ACPI table for the driver to find the device. Device (TTLV) { Name (_ADR, Zero) // _ADR: Address Name (_HID, "10TI3100") // _HID: Hardware ID Name (_CID, "10TI3100") // _CID: Compatible ID Name (_DDN, "TI TLV320AIC3100 Codec Controller ") // _DDN: DOS Device Name Name (_UID, One) // _UID: Unique ID Signed-off-by: Bastien Nocera <hadess@hadess.net> Tested-by: Jan Schmidt <jan@centricular.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')