Blame view
sound/core/misc.c
3.79 KB
1da177e4c Linux-2.6.12-rc2 |
1 2 |
/* * Misc and compatibility things |
c1017a4cd [ALSA] Changed Ja... |
3 |
* Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
1da177e4c Linux-2.6.12-rc2 |
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
* * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ |
1da177e4c Linux-2.6.12-rc2 |
21 |
#include <linux/init.h> |
d81a6d717 sound: Add export... |
22 |
#include <linux/export.h> |
31623caaf sound: add module... |
23 |
#include <linux/moduleparam.h> |
1da177e4c Linux-2.6.12-rc2 |
24 |
#include <linux/time.h> |
5a0e3ad6a include cleanup: ... |
25 |
#include <linux/slab.h> |
b1d5776d8 [ALSA] Remove vma... |
26 |
#include <linux/ioport.h> |
1da177e4c Linux-2.6.12-rc2 |
27 |
#include <sound/core.h> |
36ce99c1d ALSA: Add debug m... |
28 29 30 31 32 33 34 35 36 37 38 39 40 |
#ifdef CONFIG_SND_DEBUG #ifdef CONFIG_SND_DEBUG_VERBOSE #define DEFAULT_DEBUG_LEVEL 2 #else #define DEFAULT_DEBUG_LEVEL 1 #endif static int debug = DEFAULT_DEBUG_LEVEL; module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Debug level (0 = disable)"); #endif /* CONFIG_SND_DEBUG */ |
b1d5776d8 [ALSA] Remove vma... |
41 42 43 44 |
void release_and_free_resource(struct resource *res) { if (res) { release_resource(res); |
e38e0cfa4 [ALSA] Remove kma... |
45 |
kfree(res); |
b1d5776d8 [ALSA] Remove vma... |
46 47 |
} } |
c0d3fb39e [ALSA] Clean up E... |
48 |
EXPORT_SYMBOL(release_and_free_resource); |
1da177e4c Linux-2.6.12-rc2 |
49 |
#ifdef CONFIG_SND_VERBOSE_PRINTK |
36ce99c1d ALSA: Add debug m... |
50 |
/* strip the leading path if the given path is absolute */ |
1b0053a0f ALSA: core - stri... |
51 |
static const char *sanity_file_name(const char *path) |
1da177e4c Linux-2.6.12-rc2 |
52 |
{ |
1b0053a0f ALSA: core - stri... |
53 54 55 56 57 |
if (*path == '/') return strrchr(path, '/') + 1; else return path; } |
1da177e4c Linux-2.6.12-rc2 |
58 |
#endif |
36ce99c1d ALSA: Add debug m... |
59 60 61 |
#if defined(CONFIG_SND_DEBUG) || defined(CONFIG_SND_VERBOSE_PRINTK) void __snd_printk(unsigned int level, const char *path, int line, const char *format, ...) |
1da177e4c Linux-2.6.12-rc2 |
62 63 |
{ va_list args; |
890ee02ac ALSA: Use %pV for... |
64 65 66 67 |
#ifdef CONFIG_SND_VERBOSE_PRINTK struct va_format vaf; char verbose_fmt[] = KERN_DEFAULT "ALSA %s:%d %pV"; #endif |
36ce99c1d ALSA: Add debug m... |
68 69 70 71 |
#ifdef CONFIG_SND_DEBUG if (debug < level) return; #endif |
890ee02ac ALSA: Use %pV for... |
72 |
|
1da177e4c Linux-2.6.12-rc2 |
73 |
va_start(args, format); |
890ee02ac ALSA: Use %pV for... |
74 75 76 77 78 79 80 81 82 83 |
#ifdef CONFIG_SND_VERBOSE_PRINTK vaf.fmt = format; vaf.va = &args; if (format[0] == '<' && format[2] == '>') { memcpy(verbose_fmt, format, 3); vaf.fmt = format + 3; } else if (level) memcpy(verbose_fmt, KERN_DEBUG, 3); printk(verbose_fmt, sanity_file_name(path), line, &vaf); #else |
1da177e4c Linux-2.6.12-rc2 |
84 |
vprintk(format, args); |
890ee02ac ALSA: Use %pV for... |
85 |
#endif |
1da177e4c Linux-2.6.12-rc2 |
86 |
va_end(args); |
1da177e4c Linux-2.6.12-rc2 |
87 |
} |
36ce99c1d ALSA: Add debug m... |
88 |
EXPORT_SYMBOL_GPL(__snd_printk); |
1da177e4c Linux-2.6.12-rc2 |
89 |
#endif |
d9ea472c7 [ALSA] Add PCI qu... |
90 91 92 93 |
#ifdef CONFIG_PCI #include <linux/pci.h> /** |
d1458279b ALSA: Add snd_pci... |
94 95 96 |
* snd_pci_quirk_lookup_id - look up a PCI SSID quirk list * @vendor: PCI SSV id * @device: PCI SSD id |
d9ea472c7 [ALSA] Add PCI qu... |
97 98 99 100 101 102 103 104 105 |
* @list: quirk list, terminated by a null entry * * Look through the given quirk list and finds a matching entry * with the same PCI SSID. When subdevice is 0, all subdevice * values may match. * * Returns the matched entry pointer, or NULL if nothing matched. */ const struct snd_pci_quirk * |
d1458279b ALSA: Add snd_pci... |
106 107 |
snd_pci_quirk_lookup_id(u16 vendor, u16 device, const struct snd_pci_quirk *list) |
d9ea472c7 [ALSA] Add PCI qu... |
108 109 |
{ const struct snd_pci_quirk *q; |
8bd4bb7a3 ALSA: Add subdevi... |
110 |
for (q = list; q->subvendor; q++) { |
d1458279b ALSA: Add snd_pci... |
111 |
if (q->subvendor != vendor) |
8bd4bb7a3 ALSA: Add subdevi... |
112 113 |
continue; if (!q->subdevice || |
d1458279b ALSA: Add snd_pci... |
114 |
(device & q->subdevice_mask) == q->subdevice) |
d9ea472c7 [ALSA] Add PCI qu... |
115 |
return q; |
8bd4bb7a3 ALSA: Add subdevi... |
116 |
} |
d9ea472c7 [ALSA] Add PCI qu... |
117 118 |
return NULL; } |
d1458279b ALSA: Add snd_pci... |
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
EXPORT_SYMBOL(snd_pci_quirk_lookup_id); /** * snd_pci_quirk_lookup - look up a PCI SSID quirk list * @pci: pci_dev handle * @list: quirk list, terminated by a null entry * * Look through the given quirk list and finds a matching entry * with the same PCI SSID. When subdevice is 0, all subdevice * values may match. * * Returns the matched entry pointer, or NULL if nothing matched. */ const struct snd_pci_quirk * snd_pci_quirk_lookup(struct pci_dev *pci, const struct snd_pci_quirk *list) { return snd_pci_quirk_lookup_id(pci->subsystem_vendor, pci->subsystem_device, list); } |
d9ea472c7 [ALSA] Add PCI qu... |
139 140 |
EXPORT_SYMBOL(snd_pci_quirk_lookup); #endif |