diff options
| author | Jeff Garzik <jgarzik@redhat.com> | 2004-02-17 10:03:31 -0500 |
|---|---|---|
| committer | Jeff Garzik <jgarzik@redhat.com> | 2004-02-17 10:03:31 -0500 |
| commit | 0b37a9199bf44bba96aa24b9edbc1c2bb72bec1d (patch) | |
| tree | aad525268a3f61a36ecedb66078ab9b0902272c6 /include/linux/dmapool.h | |
| parent | 0c92609a946c935ca95af41f13e999dca5eec42e (diff) | |
| parent | d6c561cedcbd025198ce21731ccc1eae70e10a3d (diff) | |
Hand-merge pc300_tty.c conflicts with netdev.
Diffstat (limited to 'include/linux/dmapool.h')
| -rw-r--r-- | include/linux/dmapool.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/linux/dmapool.h b/include/linux/dmapool.h new file mode 100644 index 000000000000..e60bfdac348d --- /dev/null +++ b/include/linux/dmapool.h @@ -0,0 +1,27 @@ +/* + * include/linux/dmapool.h + * + * Allocation pools for DMAable (coherent) memory. + * + * This file is licensed under the terms of the GNU General Public + * License version 2. This program is licensed "as is" without any + * warranty of any kind, whether express or implied. + */ + +#ifndef LINUX_DMAPOOL_H +#define LINUX_DMAPOOL_H + +#include <asm/io.h> +#include <asm/scatterlist.h> + +struct dma_pool *dma_pool_create(const char *name, struct device *dev, + size_t size, size_t align, size_t allocation); + +void dma_pool_destroy(struct dma_pool *pool); + +void *dma_pool_alloc(struct dma_pool *pool, int mem_flags, dma_addr_t *handle); + +void dma_pool_free(struct dma_pool *pool, void *vaddr, dma_addr_t addr); + +#endif + |
