diff options
author | Takashi Iwai <tiwai@suse.de> | 2010-01-14 09:16:52 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-01-14 09:18:48 +0100 |
commit | d1458279bf9c575a52fd22818ca19c463f380aba (patch) | |
tree | 4e83317ce1a574111efc319e2bb7e75003cecaef /include/sound/core.h | |
parent | 47e91348459901c30cc1bb4897e62ced21ca243a (diff) | |
download | linux-3.10-d1458279bf9c575a52fd22818ca19c463f380aba.tar.gz linux-3.10-d1458279bf9c575a52fd22818ca19c463f380aba.tar.bz2 linux-3.10-d1458279bf9c575a52fd22818ca19c463f380aba.zip |
ALSA: Add snd_pci_quirk_lookup_id()
Added a new function to look up a quirk entry with the given PCI SSID
instead of a pci device pointer. This can be used when the searched ID
is overridden for debugging or such a purpose.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound/core.h')
-rw-r--r-- | include/sound/core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sound/core.h b/include/sound/core.h index a61499c22b0..89e0ac17f44 100644 --- a/include/sound/core.h +++ b/include/sound/core.h @@ -458,5 +458,8 @@ struct snd_pci_quirk { const struct snd_pci_quirk * snd_pci_quirk_lookup(struct pci_dev *pci, const struct snd_pci_quirk *list); +const struct snd_pci_quirk * +snd_pci_quirk_lookup_id(u16 vendor, u16 device, + const struct snd_pci_quirk *list); #endif /* __SOUND_CORE_H */ |