mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
86a9bb5bf9
Practically seen, CONFIG_PM is almost mandatory. Let's drop the ugly ifdef lines and simplify the code. Link: https://lore.kernel.org/r/20211202084053.18201-1-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
20 lines
631 B
C
20 lines
631 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef SND_USB_MIXER_QUIRKS_H
|
|
#define SND_USB_MIXER_QUIRKS_H
|
|
|
|
int snd_usb_mixer_apply_create_quirk(struct usb_mixer_interface *mixer);
|
|
|
|
void snd_emuusb_set_samplerate(struct snd_usb_audio *chip,
|
|
unsigned char samplerate_id);
|
|
|
|
void snd_usb_mixer_rc_memory_change(struct usb_mixer_interface *mixer,
|
|
int unitid);
|
|
|
|
void snd_usb_mixer_fu_apply_quirk(struct usb_mixer_interface *mixer,
|
|
struct usb_mixer_elem_info *cval, int unitid,
|
|
struct snd_kcontrol *kctl);
|
|
|
|
void snd_usb_mixer_resume_quirk(struct usb_mixer_interface *mixer);
|
|
|
|
#endif /* SND_USB_MIXER_QUIRKS_H */
|
|
|