diff options
author | Randy Dunlap <[email protected]> | 2023-01-02 13:16:14 -0800 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2023-01-11 16:14:21 -0800 |
commit | d09dce1fff8a9da10144e878ef4bbf90c65559e5 (patch) | |
tree | dcea07d531b3a0af15f5776b859d01e5d2c2c62a | |
parent | 0de4a7f5ba5744d1de5ce0b076bb73a86530c60c (diff) |
lib/win_minmax: use /* notation for regular comments
Don't use kernel-doc "/**" notation for non-kernel-doc comments.
Prevents a kernel-doc warning:
lib/win_minmax.c:31: warning: expecting prototype for lib/minmax.c(). Prototype was for minmax_subwin_update() instead
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Randy Dunlap <[email protected]>
Cc: Neal Cardwell <[email protected]>
Cc: Eric Dumazet <[email protected]>
Cc: David S. Miller <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | lib/win_minmax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/win_minmax.c b/lib/win_minmax.c index 6bdc1cd15f76..ec10506834b6 100644 --- a/lib/win_minmax.c +++ b/lib/win_minmax.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/** +/* * lib/minmax.c: windowed min/max tracker * * Kathleen Nichols' algorithm for tracking the minimum (or maximum) |