Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3a11ec5e authored by Victor Fusco's avatar Victor Fusco Committed by Linus Torvalds
Browse files

[PATCH] dmapool: Fix "nocast type" warnings



Fix the sparse warning "implicit cast to nocast type"

Signed-off-by: default avatarVictor Fusco <victor@cetuc.puc-rio.br>
Signed-off-by: default avatarDomen Puncer <domen@coderock.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 00b61f51
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -262,7 +262,8 @@ dma_pool_destroy (struct dma_pool *pool)
 * If such a memory block can't be allocated, null is returned.
 */
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;
	struct dma_page		*page;
+2 −1
Original line number Diff line number Diff line
@@ -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_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);