aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/find-unused-docs.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xscripts/find-unused-docs.sh2
1 files changed, 1 insertions, 1 deletions
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