mm/dmapool.c: reuse devres_release() to free resources
Instead of calling an additional routine in dmam_pool_destroy() rely on what dmam_pool_release() is doing. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
fe54b1fd49
commit
172cb4b3d4
1 changed files with 1 additions and 2 deletions
|
@ -500,7 +500,6 @@ void dmam_pool_destroy(struct dma_pool *pool)
|
||||||
{
|
{
|
||||||
struct device *dev = pool->dev;
|
struct device *dev = pool->dev;
|
||||||
|
|
||||||
WARN_ON(devres_destroy(dev, dmam_pool_release, dmam_pool_match, pool));
|
WARN_ON(devres_release(dev, dmam_pool_release, dmam_pool_match, pool));
|
||||||
dma_pool_destroy(pool);
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(dmam_pool_destroy);
|
EXPORT_SYMBOL(dmam_pool_destroy);
|
||||||
|
|
Loading…
Reference in a new issue