mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
[PATCH] dmapool: Fix "nocast type" warnings
Fix the sparse warning "implicit cast to nocast type" Signed-off-by: Victor Fusco <victor@cetuc.puc-rio.br> Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
00b61f5192
commit
3a11ec5e50
2 changed files with 4 additions and 2 deletions
|
@ -262,7 +262,8 @@ dma_pool_destroy (struct dma_pool *pool)
|
||||||
* If such a memory block can't be allocated, null is returned.
|
* If such a memory block can't be allocated, null is returned.
|
||||||
*/
|
*/
|
||||||
void *
|
void *
|
||||||
dma_pool_alloc (struct dma_pool *pool, int mem_flags, dma_addr_t *handle)
|
dma_pool_alloc (struct dma_pool *pool, unsigned int __nocast mem_flags,
|
||||||
|
dma_addr_t *handle)
|
||||||
{
|
{
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
struct dma_page *page;
|
struct dma_page *page;
|
||||||
|
|
|
@ -19,7 +19,8 @@ struct dma_pool *dma_pool_create(const char *name, struct device *dev,
|
||||||
|
|
||||||
void dma_pool_destroy(struct dma_pool *pool);
|
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_alloc(struct dma_pool *pool, unsigned int __nocast mem_flags,
|
||||||
|
dma_addr_t *handle);
|
||||||
|
|
||||||
void dma_pool_free(struct dma_pool *pool, void *vaddr, dma_addr_t addr);
|
void dma_pool_free(struct dma_pool *pool, void *vaddr, dma_addr_t addr);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue