VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Geert Uytterhoeven <geert+renesas@glider.be> 2020-01-27 10:31:07 +0100 committer: Jonathan Corbet <corbet@lwn.net> 2020-01-27 14:25:06 -0700 commit: 1630146db2111412e7524d05d812ff8f2c75977e parent: 06b9c269938ba1e9356b74584cd1ff738c0cf4de
Commit Summary:
scripts/find-unused-docs: Fix massive false positives
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/scripts/find-unused-docs.sh b/scripts/find-unused-docs.sh
index 3f46f8977dc4..ee6a50e33aba 100755
--- a/scripts/find-unused-docs.sh
+++ b/scripts/find-unused-docs.sh
@@ -54,7 +54,7 @@ for file in `find $1 -name '*.c'`; do
 	if [[ ${FILES_INCLUDED[$file]+_} ]]; then
 	continue;
 	fi
-	str=$(scripts/kernel-doc -text -export "$file" 2>/dev/null)
+	str=$(scripts/kernel-doc -export "$file" 2>/dev/null)
 	if [[ -n "$str" ]]; then
 	echo "$file"
 	fi