summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2024-04-02 12:44:09 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2024-04-02 12:44:09 -0700
commitb1e6ec0a0fd0252af046e542f91234cd6c30b2cb (patch)
treefbf50a327ac2e2dd3f14c78220816a5c554eb0df /scripts
parent67199a47ddb9e265d1a83bb23bb06c752ffa1f4b (diff)
parente9c44c1beaba623b12201d2028bc20f535464d9b (diff)
downloadlinux-stable-b1e6ec0a0fd0252af046e542f91234cd6c30b2cb.tar.gz
linux-stable-b1e6ec0a0fd0252af046e542f91234cd6c30b2cb.tar.bz2
linux-stable-b1e6ec0a0fd0252af046e542f91234cd6c30b2cb.zip
Merge tag 'docs-6.9-fixes' of git://git.lwn.net/linux
Pull documentation fixes from Jonathan Corbet: "Four small documentation fixes" * tag 'docs-6.9-fixes' of git://git.lwn.net/linux: docs: zswap: fix shell command format tracing: Fix documentation on tp_printk cmdline option docs: Fix bitfield handling in kernel-doc Documentation: dev-tools: Add link to RV docs
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kernel-doc2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc
index 967f1abb0edb..cb1be22afc65 100755
--- a/scripts/kernel-doc
+++ b/scripts/kernel-doc
@@ -1541,7 +1541,7 @@ sub create_parameterlist($$$$) {
save_struct_actual($2);
push_parameter($2, "$type $1", $arg, $file, $declaration_name);
- } elsif ($param =~ m/(.*?):(\d+)/) {
+ } elsif ($param =~ m/(.*?):(\w+)/) {
if ($type ne "") { # skip unnamed bit-fields
save_struct_actual($1);
push_parameter($1, "$type:$2", $arg, $file, $declaration_name)