diff options
author | Matthew Wilcox <willy@infradead.org> | 2018-07-03 15:43:54 -0400 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2018-07-10 17:00:52 -0400 |
commit | 8dd99871f7acb776521b35a6107d3dd22f1522b8 (patch) | |
tree | 7f7e370d5ba50331755aa0c6e6195637f2d8d244 /lib/reed_solomon | |
parent | ea272257ccba1e57b9448444e1e3de39794ad6b4 (diff) |
reed_solomon: Fix kernel-doc
The current doc build warns:
./lib/reed_solomon/reed_solomon.c:287: WARNING: Unknown target name: "gfp".
This is because it misinterprets the "GFP_" that is part of the
description. Change the description to avoid the problem.
Signed-off-by: Matthew Wilcox <willy@infradead.org>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'lib/reed_solomon')
-rw-r--r-- | lib/reed_solomon/reed_solomon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reed_solomon/reed_solomon.c b/lib/reed_solomon/reed_solomon.c index d8bb1a1eba72..e5fdc8b9e856 100644 --- a/lib/reed_solomon/reed_solomon.c +++ b/lib/reed_solomon/reed_solomon.c | |||
@@ -283,7 +283,7 @@ out: | |||
283 | * in index form | 283 | * in index form |
284 | * @prim: primitive element to generate polynomial roots | 284 | * @prim: primitive element to generate polynomial roots |
285 | * @nroots: RS code generator polynomial degree (number of roots) | 285 | * @nroots: RS code generator polynomial degree (number of roots) |
286 | * @gfp: GFP_ flags for allocations | 286 | * @gfp: Memory allocation flags. |
287 | */ | 287 | */ |
288 | struct rs_control *init_rs_gfp(int symsize, int gfpoly, int fcr, int prim, | 288 | struct rs_control *init_rs_gfp(int symsize, int gfpoly, int fcr, int prim, |
289 | int nroots, gfp_t gfp) | 289 | int nroots, gfp_t gfp) |