Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 2 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Takashi Iwai <tiwai@suse.de> |
| 4 | * |
| 5 | * Generic memory allocators |
| 6 | * |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | */ |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/slab.h> |
| 25 | #include <linux/mm.h> |
| 26 | #include <linux/dma-mapping.h> |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 27 | #include <linux/genalloc.h> |
Takashi Iwai | 42e748a | 2018-08-08 17:01:00 +0200 | [diff] [blame] | 28 | #ifdef CONFIG_X86 |
| 29 | #include <asm/set_memory.h> |
| 30 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <sound/memalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | * |
| 35 | * Generic memory allocators |
| 36 | * |
| 37 | */ |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /** |
| 40 | * snd_malloc_pages - allocate pages with the given size |
| 41 | * @size: the size to allocate in bytes |
| 42 | * @gfp_flags: the allocation conditions, GFP_XXX |
| 43 | * |
| 44 | * Allocates the physically contiguous pages with the given size. |
| 45 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 46 | * Return: The pointer of the buffer, or %NULL if no enough memory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | */ |
Al Viro | 1ef64e6 | 2005-10-21 03:22:18 -0400 | [diff] [blame] | 48 | void *snd_malloc_pages(size_t size, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { |
| 50 | int pg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 52 | if (WARN_ON(!size)) |
| 53 | return NULL; |
| 54 | if (WARN_ON(!gfp_flags)) |
| 55 | return NULL; |
Hugh Dickins | f3d48f0 | 2005-11-21 21:32:22 -0800 | [diff] [blame] | 56 | gfp_flags |= __GFP_COMP; /* compound page lets parts be mapped */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | pg = get_order(size); |
Takashi Iwai | d7b1354 | 2014-01-08 16:09:31 +0100 | [diff] [blame] | 58 | return (void *) __get_free_pages(gfp_flags, pg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
Takashi Iwai | 35f8001 | 2017-06-16 16:16:33 +0200 | [diff] [blame] | 60 | EXPORT_SYMBOL(snd_malloc_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | /** |
| 63 | * snd_free_pages - release the pages |
| 64 | * @ptr: the buffer pointer to release |
| 65 | * @size: the allocated buffer size |
| 66 | * |
| 67 | * Releases the buffer allocated via snd_malloc_pages(). |
| 68 | */ |
| 69 | void snd_free_pages(void *ptr, size_t size) |
| 70 | { |
| 71 | int pg; |
| 72 | |
| 73 | if (ptr == NULL) |
| 74 | return; |
| 75 | pg = get_order(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | free_pages((unsigned long) ptr, pg); |
| 77 | } |
Takashi Iwai | 35f8001 | 2017-06-16 16:16:33 +0200 | [diff] [blame] | 78 | EXPORT_SYMBOL(snd_free_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | /* |
| 81 | * |
| 82 | * Bus-specific memory allocators |
| 83 | * |
| 84 | */ |
| 85 | |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 86 | #ifdef CONFIG_HAS_DMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* allocate the coherent DMA pages */ |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame] | 88 | static void snd_malloc_dev_pages(struct snd_dma_buffer *dmab, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Al Viro | 1ef64e6 | 2005-10-21 03:22:18 -0400 | [diff] [blame] | 90 | gfp_t gfp_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | gfp_flags = GFP_KERNEL |
Hugh Dickins | f3d48f0 | 2005-11-21 21:32:22 -0800 | [diff] [blame] | 93 | | __GFP_COMP /* compound page lets parts be mapped */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | | __GFP_NORETRY /* don't trigger OOM-killer */ |
| 95 | | __GFP_NOWARN; /* no stack trace print - this call is non-critical */ |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame] | 96 | dmab->area = dma_alloc_coherent(dmab->dev.dev, size, &dmab->addr, |
| 97 | gfp_flags); |
Takashi Iwai | 42e748a | 2018-08-08 17:01:00 +0200 | [diff] [blame] | 98 | #ifdef CONFIG_X86 |
| 99 | if (dmab->area && dmab->dev.type == SNDRV_DMA_TYPE_DEV_UC) |
| 100 | set_memory_wc((unsigned long)dmab->area, |
| 101 | PAGE_ALIGN(size) >> PAGE_SHIFT); |
| 102 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | /* free the coherent DMA pages */ |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame] | 106 | static void snd_free_dev_pages(struct snd_dma_buffer *dmab) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
Takashi Iwai | 42e748a | 2018-08-08 17:01:00 +0200 | [diff] [blame] | 108 | #ifdef CONFIG_X86 |
| 109 | if (dmab->dev.type == SNDRV_DMA_TYPE_DEV_UC) |
| 110 | set_memory_wb((unsigned long)dmab->area, |
| 111 | PAGE_ALIGN(dmab->bytes) >> PAGE_SHIFT); |
| 112 | #endif |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame] | 113 | dma_free_coherent(dmab->dev.dev, dmab->bytes, dmab->area, dmab->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 115 | |
Takashi Iwai | 6343731 | 2013-10-28 16:08:27 +0100 | [diff] [blame] | 116 | #ifdef CONFIG_GENERIC_ALLOCATOR |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 117 | /** |
| 118 | * snd_malloc_dev_iram - allocate memory from on-chip internal ram |
| 119 | * @dmab: buffer allocation record to store the allocated data |
| 120 | * @size: number of bytes to allocate from the iram |
| 121 | * |
| 122 | * This function requires iram phandle provided via of_node |
| 123 | */ |
Takashi Iwai | 9f694bc | 2013-10-29 11:56:21 +0100 | [diff] [blame] | 124 | static void snd_malloc_dev_iram(struct snd_dma_buffer *dmab, size_t size) |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 125 | { |
| 126 | struct device *dev = dmab->dev.dev; |
| 127 | struct gen_pool *pool = NULL; |
| 128 | |
Takashi Iwai | a40a393 | 2013-10-29 11:59:31 +0100 | [diff] [blame] | 129 | dmab->area = NULL; |
| 130 | dmab->addr = 0; |
| 131 | |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 132 | if (dev->of_node) |
Vladimir Zapolskiy | abdd4a7 | 2015-06-30 15:00:07 -0700 | [diff] [blame] | 133 | pool = of_gen_pool_get(dev->of_node, "iram", 0); |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 134 | |
| 135 | if (!pool) |
| 136 | return; |
| 137 | |
| 138 | /* Assign the pool into private_data field */ |
| 139 | dmab->private_data = pool; |
| 140 | |
Nicolin Chen | 07968fe | 2013-11-14 14:32:15 -0800 | [diff] [blame] | 141 | dmab->area = gen_pool_dma_alloc(pool, size, &dmab->addr); |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | /** |
| 145 | * snd_free_dev_iram - free allocated specific memory from on-chip internal ram |
| 146 | * @dmab: buffer allocation record to store the allocated data |
| 147 | */ |
Takashi Iwai | 9f694bc | 2013-10-29 11:56:21 +0100 | [diff] [blame] | 148 | static void snd_free_dev_iram(struct snd_dma_buffer *dmab) |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 149 | { |
| 150 | struct gen_pool *pool = dmab->private_data; |
| 151 | |
| 152 | if (pool && dmab->area) |
| 153 | gen_pool_free(pool, (unsigned long)dmab->area, dmab->bytes); |
| 154 | } |
Takashi Iwai | 6343731 | 2013-10-28 16:08:27 +0100 | [diff] [blame] | 155 | #endif /* CONFIG_GENERIC_ALLOCATOR */ |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 156 | #endif /* CONFIG_HAS_DMA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /* |
| 159 | * |
| 160 | * ALSA generic memory management |
| 161 | * |
| 162 | */ |
| 163 | |
| 164 | |
| 165 | /** |
| 166 | * snd_dma_alloc_pages - allocate the buffer area according to the given type |
| 167 | * @type: the DMA buffer type |
| 168 | * @device: the device pointer |
| 169 | * @size: the buffer size to allocate |
| 170 | * @dmab: buffer allocation record to store the allocated data |
| 171 | * |
| 172 | * Calls the memory-allocator function for the corresponding |
| 173 | * buffer type. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 174 | * |
| 175 | * Return: Zero if the buffer with the given size is allocated successfully, |
| 176 | * otherwise a negative value on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | */ |
| 178 | int snd_dma_alloc_pages(int type, struct device *device, size_t size, |
| 179 | struct snd_dma_buffer *dmab) |
| 180 | { |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 181 | if (WARN_ON(!size)) |
| 182 | return -ENXIO; |
| 183 | if (WARN_ON(!dmab)) |
| 184 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | dmab->dev.type = type; |
| 187 | dmab->dev.dev = device; |
| 188 | dmab->bytes = 0; |
| 189 | switch (type) { |
| 190 | case SNDRV_DMA_TYPE_CONTINUOUS: |
Clemens Ladisch | fea952e | 2011-02-14 11:00:47 +0100 | [diff] [blame] | 191 | dmab->area = snd_malloc_pages(size, |
| 192 | (__force gfp_t)(unsigned long)device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | dmab->addr = 0; |
| 194 | break; |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 195 | #ifdef CONFIG_HAS_DMA |
Takashi Iwai | a5606f8 | 2013-10-24 14:25:32 +0200 | [diff] [blame] | 196 | #ifdef CONFIG_GENERIC_ALLOCATOR |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 197 | case SNDRV_DMA_TYPE_DEV_IRAM: |
| 198 | snd_malloc_dev_iram(dmab, size); |
| 199 | if (dmab->area) |
| 200 | break; |
| 201 | /* Internal memory might have limited size and no enough space, |
| 202 | * so if we fail to malloc, try to fetch memory traditionally. |
| 203 | */ |
| 204 | dmab->dev.type = SNDRV_DMA_TYPE_DEV; |
Takashi Iwai | a5606f8 | 2013-10-24 14:25:32 +0200 | [diff] [blame] | 205 | #endif /* CONFIG_GENERIC_ALLOCATOR */ |
Takashi Iwai | 3c4cfa7 | 2018-10-04 19:54:51 +0200 | [diff] [blame] | 206 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | case SNDRV_DMA_TYPE_DEV: |
Takashi Iwai | 42e748a | 2018-08-08 17:01:00 +0200 | [diff] [blame] | 208 | case SNDRV_DMA_TYPE_DEV_UC: |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame] | 209 | snd_malloc_dev_pages(dmab, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | break; |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 211 | #endif |
| 212 | #ifdef CONFIG_SND_DMA_SGBUF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | case SNDRV_DMA_TYPE_DEV_SG: |
Takashi Iwai | 42e748a | 2018-08-08 17:01:00 +0200 | [diff] [blame] | 214 | case SNDRV_DMA_TYPE_DEV_UC_SG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | snd_malloc_sgbuf_pages(device, size, dmab, NULL); |
| 216 | break; |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 217 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | default: |
Takashi Iwai | f2f9307 | 2014-02-04 18:21:03 +0100 | [diff] [blame] | 219 | pr_err("snd-malloc: invalid device type %d\n", type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | dmab->area = NULL; |
| 221 | dmab->addr = 0; |
| 222 | return -ENXIO; |
| 223 | } |
| 224 | if (! dmab->area) |
| 225 | return -ENOMEM; |
| 226 | dmab->bytes = size; |
| 227 | return 0; |
| 228 | } |
Takashi Iwai | 35f8001 | 2017-06-16 16:16:33 +0200 | [diff] [blame] | 229 | EXPORT_SYMBOL(snd_dma_alloc_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | /** |
| 232 | * snd_dma_alloc_pages_fallback - allocate the buffer area according to the given type with fallback |
| 233 | * @type: the DMA buffer type |
| 234 | * @device: the device pointer |
| 235 | * @size: the buffer size to allocate |
| 236 | * @dmab: buffer allocation record to store the allocated data |
| 237 | * |
| 238 | * Calls the memory-allocator function for the corresponding |
| 239 | * buffer type. When no space is left, this function reduces the size and |
| 240 | * tries to allocate again. The size actually allocated is stored in |
| 241 | * res_size argument. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 242 | * |
| 243 | * Return: Zero if the buffer with the given size is allocated successfully, |
| 244 | * otherwise a negative value on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | */ |
| 246 | int snd_dma_alloc_pages_fallback(int type, struct device *device, size_t size, |
| 247 | struct snd_dma_buffer *dmab) |
| 248 | { |
| 249 | int err; |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | while ((err = snd_dma_alloc_pages(type, device, size, dmab)) < 0) { |
| 252 | if (err != -ENOMEM) |
| 253 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | if (size <= PAGE_SIZE) |
| 255 | return -ENOMEM; |
Takashi Iwai | dfef01e | 2018-07-19 11:01:04 +0200 | [diff] [blame] | 256 | size >>= 1; |
| 257 | size = PAGE_SIZE << get_order(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | } |
| 259 | if (! dmab->area) |
| 260 | return -ENOMEM; |
| 261 | return 0; |
| 262 | } |
Takashi Iwai | 35f8001 | 2017-06-16 16:16:33 +0200 | [diff] [blame] | 263 | EXPORT_SYMBOL(snd_dma_alloc_pages_fallback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
| 265 | |
| 266 | /** |
| 267 | * snd_dma_free_pages - release the allocated buffer |
| 268 | * @dmab: the buffer allocation record to release |
| 269 | * |
| 270 | * Releases the allocated buffer via snd_dma_alloc_pages(). |
| 271 | */ |
| 272 | void snd_dma_free_pages(struct snd_dma_buffer *dmab) |
| 273 | { |
| 274 | switch (dmab->dev.type) { |
| 275 | case SNDRV_DMA_TYPE_CONTINUOUS: |
| 276 | snd_free_pages(dmab->area, dmab->bytes); |
| 277 | break; |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 278 | #ifdef CONFIG_HAS_DMA |
Takashi Iwai | a5606f8 | 2013-10-24 14:25:32 +0200 | [diff] [blame] | 279 | #ifdef CONFIG_GENERIC_ALLOCATOR |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 280 | case SNDRV_DMA_TYPE_DEV_IRAM: |
| 281 | snd_free_dev_iram(dmab); |
| 282 | break; |
Takashi Iwai | a5606f8 | 2013-10-24 14:25:32 +0200 | [diff] [blame] | 283 | #endif /* CONFIG_GENERIC_ALLOCATOR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | case SNDRV_DMA_TYPE_DEV: |
Takashi Iwai | 42e748a | 2018-08-08 17:01:00 +0200 | [diff] [blame] | 285 | case SNDRV_DMA_TYPE_DEV_UC: |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame] | 286 | snd_free_dev_pages(dmab); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | break; |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 288 | #endif |
| 289 | #ifdef CONFIG_SND_DMA_SGBUF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | case SNDRV_DMA_TYPE_DEV_SG: |
Takashi Iwai | 42e748a | 2018-08-08 17:01:00 +0200 | [diff] [blame] | 291 | case SNDRV_DMA_TYPE_DEV_UC_SG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | snd_free_sgbuf_pages(dmab); |
| 293 | break; |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 294 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | default: |
Takashi Iwai | f2f9307 | 2014-02-04 18:21:03 +0100 | [diff] [blame] | 296 | pr_err("snd-malloc: invalid device type %d\n", dmab->dev.type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } |
| 298 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | EXPORT_SYMBOL(snd_dma_free_pages); |