projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95b6be9
)
kernel-doc: add missing semi-colons in option parsing
author
Jani Nikula
<jani.nikula@intel.com>
Tue, 7 Jun 2016 07:29:59 +0000
(10:29 +0300)
committer
Jani Nikula
<jani.nikula@intel.com>
Fri, 10 Jun 2016 08:29:18 +0000
(11:29 +0300)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
scripts/kernel-doc
patch
|
blob
|
blame
|
history
diff --git
a/scripts/kernel-doc
b/scripts/kernel-doc
index 710615f3a4ffe5ed69f946ee0754ab194afa6f1d..a6f82c812c1551980e2834d3c7ce1364d57ad5db 100755
(executable)
--- a/
scripts/kernel-doc
+++ b/
scripts/kernel-doc
@@
-484,10
+484,10
@@
while ($ARGV[0] =~ m/^-(.*)/) {
$function_table{$function} = 1;
} elsif ($cmd eq "-export") { # only exported symbols
$output_selection = OUTPUT_EXPORTED;
- %function_table = ()
+ %function_table = ()
;
} elsif ($cmd eq "-internal") { # only non-exported symbols
$output_selection = OUTPUT_INTERNAL;
- %function_table = ()
+ %function_table = ()
;
} elsif ($cmd eq "-v") {
$verbose = 1;
} elsif (($cmd eq "-h") || ($cmd eq "--help")) {