diff options
author | Mike Rapoport (IBM) <rppt@kernel.org> | 2023-07-15 11:40:38 +0300 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-08-18 20:12:38 +0300 |
commit | 4ae6944d15727c50ff1c0bb3fe38b9b412520d85 (patch) | |
tree | 38a187e97a05041a1c4a484c779332136807b9bf /lib | |
parent | 4445e58264aea8ec6bb1287add79606f0e3f3988 (diff) | |
download | linux-4ae6944d15727c50ff1c0bb3fe38b9b412520d85.tar.xz |
maple_tree: mtree_insert: fix typo in kernel-doc description of GFP flags
Replace FGP_FLAGS with GFP_FLAGS
Link: https://lkml.kernel.org/r/20230715084038.987955-1-rppt@kernel.org
Signed-off-by: Mike Rapoport (IBM) <rppt@kernel.org>
Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/maple_tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/maple_tree.c b/lib/maple_tree.c index 616ec7f3be81..b6b3973897f0 100644 --- a/lib/maple_tree.c +++ b/lib/maple_tree.c @@ -6314,7 +6314,7 @@ EXPORT_SYMBOL(mtree_insert_range); * @mt: The maple tree * @index : The index to store the value * @entry: The entry to store - * @gfp: The FGP_FLAGS to use for allocations. + * @gfp: The GFP_FLAGS to use for allocations. * * Return: 0 on success, -EEXISTS if the range is occupied, -EINVAL on invalid * request, -ENOMEM if memory could not be allocated. |