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:
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