diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2023-01-03 00:18:30 +0300 |
---|---|---|
committer | Yury Norov <yury.norov@gmail.com> | 2023-06-22 23:57:41 +0300 |
commit | 839cad5fa54bd6e4aad137f695ec6f90acb78728 (patch) | |
tree | b72b7d67901663d6721dd10adba51fd890fbba2f /lib/cpumask.c | |
parent | cdd2d06fbc0a58297f782c8eb7e2f3c0b1dc367e (diff) | |
download | linux-839cad5fa54bd6e4aad137f695ec6f90acb78728.tar.xz |
cpumask: fix function description kernel-doc notation
Use kernel-doc notation for the function description to prevent
a warning:
lib/cpumask.c:160: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* Returns an arbitrary cpu within srcp1 & srcp2.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Yury Norov <yury.norov@gmail.com>
Diffstat (limited to 'lib/cpumask.c')
-rw-r--r-- | lib/cpumask.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cpumask.c b/lib/cpumask.c index e7258836b60b..de356f16773a 100644 --- a/lib/cpumask.c +++ b/lib/cpumask.c @@ -157,7 +157,7 @@ EXPORT_SYMBOL(cpumask_local_spread); static DEFINE_PER_CPU(int, distribute_cpu_mask_prev); /** - * Returns an arbitrary cpu within srcp1 & srcp2. + * cpumask_any_and_distribute - Return an arbitrary cpu within srcp1 & srcp2. * * Iterated calls using the same srcp1 and srcp2 will be distributed within * their intersection. |