https://github.com/torvalds/linux
Revision aa52619ccbe056999d7c7231c8a1a11cedfccc6a authored by Randy Dunlap on 01 June 2019, 05:30:00 UTC, committed by Linus Torvalds on 01 June 2019, 22:51:31 UTC
Fix kernel-doc notation in lib/sort.c by using correct function parameter
names.

  lib/sort.c:59: warning: Excess function parameter 'size' description in 'swap_words_32'
  lib/sort.c:83: warning: Excess function parameter 'size' description in 'swap_words_64'
  lib/sort.c:110: warning: Excess function parameter 'size' description in 'swap_bytes'

Link: http://lkml.kernel.org/r/60e25d3d-68d1-bde2-3b39-e4baa0b14907@infradead.org
Fixes: 37d0ec34d111a ("lib/sort: make swap functions more generic")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: George Spelvin <lkml@sdf.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 91173c6
Raw File
Tip revision: aa52619ccbe056999d7c7231c8a1a11cedfccc6a authored by Randy Dunlap on 01 June 2019, 05:30:00 UTC
lib/sort.c: fix kernel-doc notation warnings
Tip revision: aa52619
file-size.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
set -- $(ls -dn "$1")
printf '%s\n' "$5"
back to top