maple_tree: mtree_insert: fix typo in kernel-doc description of GFP flags

Message ID 20230715084038.987955-1-rppt@kernel.org
State New
Headers
Series maple_tree: mtree_insert: fix typo in kernel-doc description of GFP flags |

Commit Message

Mike Rapoport July 15, 2023, 8:40 a.m. UTC
  From: "Mike Rapoport (IBM)" <rppt@kernel.org>

Replace FGP_FLAGS with GFP_FLAGS

Signed-off-by: Mike Rapoport (IBM) <rppt@kernel.org>
---
 lib/maple_tree.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Liam R. Howlett July 17, 2023, 1:27 p.m. UTC | #1
* Mike Rapoport <rppt@kernel.org> [230715 04:40]:
> From: "Mike Rapoport (IBM)" <rppt@kernel.org>
> 
> Replace FGP_FLAGS with GFP_FLAGS
> 
> Signed-off-by: Mike Rapoport (IBM) <rppt@kernel.org>

Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com>

> ---
>  lib/maple_tree.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/maple_tree.c b/lib/maple_tree.c
> index 8ebc43d4cc8c..92da9c27fbd9 100644
> --- a/lib/maple_tree.c
> +++ b/lib/maple_tree.c
> @@ -6339,7 +6339,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.
> -- 
> 2.39.2
>
  

Patch

diff --git a/lib/maple_tree.c b/lib/maple_tree.c
index 8ebc43d4cc8c..92da9c27fbd9 100644
--- a/lib/maple_tree.c
+++ b/lib/maple_tree.c
@@ -6339,7 +6339,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.