Skip to content

Commit

Permalink
mm: Fix printk typo in dmapool.c
Browse files Browse the repository at this point in the history
Fix printk typo in dmapool.c

Signed-off-by: Hiroshige Sato <sato.vintage@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
HiroshigeSato authored and Jiri Kosina committed May 5, 2014
1 parent baec30e commit 5835f25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mm/dmapool.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,10 @@ void *dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
continue;
if (pool->dev)
dev_err(pool->dev,
"dma_pool_alloc %s, %p (corruped)\n",
"dma_pool_alloc %s, %p (corrupted)\n",
pool->name, retval);
else
pr_err("dma_pool_alloc %s, %p (corruped)\n",
pr_err("dma_pool_alloc %s, %p (corrupted)\n",
pool->name, retval);

/*
Expand Down

0 comments on commit 5835f25

Please sign in to comment.