aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound/memalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sound/memalloc.h')
-rw-r--r--include/sound/memalloc.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/sound/memalloc.h b/include/sound/memalloc.h
index af9983970417..782d1df34208 100644
--- a/include/sound/memalloc.h
+++ b/include/sound/memalloc.h
@@ -108,7 +108,7 @@ static inline dma_addr_t snd_sgbuf_get_addr(struct snd_dma_buffer *dmab,
108{ 108{
109 struct snd_sg_buf *sgbuf = dmab->private_data; 109 struct snd_sg_buf *sgbuf = dmab->private_data;
110 dma_addr_t addr = sgbuf->table[offset >> PAGE_SHIFT].addr; 110 dma_addr_t addr = sgbuf->table[offset >> PAGE_SHIFT].addr;
111 addr &= PAGE_MASK; 111 addr &= ~((dma_addr_t)PAGE_SIZE - 1);
112 return addr + offset % PAGE_SIZE; 112 return addr + offset % PAGE_SIZE;
113} 113}
114 114
@@ -149,13 +149,6 @@ int snd_dma_alloc_pages_fallback(int type, struct device *dev, size_t size,
149 struct snd_dma_buffer *dmab); 149 struct snd_dma_buffer *dmab);
150void snd_dma_free_pages(struct snd_dma_buffer *dmab); 150void snd_dma_free_pages(struct snd_dma_buffer *dmab);
151 151
152/* buffer-preservation managements */
153
154#define snd_dma_pci_buf_id(pci) (((unsigned int)(pci)->vendor << 16) | (pci)->device)
155
156size_t snd_dma_get_reserved_buf(struct snd_dma_buffer *dmab, unsigned int id);
157int snd_dma_reserve_buf(struct snd_dma_buffer *dmab, unsigned int id);
158
159/* basic memory allocation functions */ 152/* basic memory allocation functions */
160void *snd_malloc_pages(size_t size, gfp_t gfp_flags); 153void *snd_malloc_pages(size_t size, gfp_t gfp_flags);
161void snd_free_pages(void *ptr, size_t size); 154void snd_free_pages(void *ptr, size_t size);