diff options
author | Jonathan Corbet <corbet@lwn.net> | 2019-10-03 12:40:30 -0600 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-10-07 09:10:38 -0600 |
commit | ea83df73aaa3bded80e441d05ca2873c37f84e0a (patch) | |
tree | 6fa91bc8b8148ee9e75dcddecdc2338de58c79b0 /lib/genalloc.c | |
parent | cc84ac35d9fa3131179ed0805ddbd28bc5f262d6 (diff) | |
download | linux-ea83df73aaa3bded80e441d05ca2873c37f84e0a.tar.gz linux-ea83df73aaa3bded80e441d05ca2873c37f84e0a.tar.bz2 linux-ea83df73aaa3bded80e441d05ca2873c37f84e0a.zip |
genalloc: Fix a set of docs build warnings
Commit 795ee30648c7 ("lib/genalloc: introduce chunk owners") made a number
of changes to the genalloc API and implementation but did not update the
documentation to match, leading to these docs build warnings:
./lib/genalloc.c:1: warning: 'gen_pool_add_virt' not found
./lib/genalloc.c:1: warning: 'gen_pool_alloc' not found
./lib/genalloc.c:1: warning: 'gen_pool_free' not found
./lib/genalloc.c:1: warning: 'gen_pool_alloc_algo' not found
Fix these by updating the docs to match new function locations and names,
and by completing the update of one kerneldoc comment.
Fixes: 795ee30648c7 ("lib/genalloc: introduce chunk owners")
Acked-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'lib/genalloc.c')
-rw-r--r-- | lib/genalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/genalloc.c b/lib/genalloc.c index 9fc31292cfa1..24d20ca7e91b 100644 --- a/lib/genalloc.c +++ b/lib/genalloc.c @@ -472,7 +472,7 @@ void *gen_pool_dma_zalloc_align(struct gen_pool *pool, size_t size, EXPORT_SYMBOL(gen_pool_dma_zalloc_align); /** - * gen_pool_free - free allocated special memory back to the pool + * gen_pool_free_owner - free allocated special memory back to the pool * @pool: pool to free to * @addr: starting address of memory to free back to pool * @size: size in bytes of memory to free |