summaryrefslogtreecommitdiff
path: root/Documentation/process
diff options
context:
space:
mode:
authorJonathan Corbet <corbet@lwn.net>2026-06-12 13:41:41 -0600
committerJonathan Corbet <corbet@lwn.net>2026-06-12 13:41:41 -0600
commit9347fe187d93c647fa93a708ce990241ee8f3c6e (patch)
treef41cbe901fc4b26511debc5a340cbe8c5184e153 /Documentation/process
parent738bb6e6c8d992f33335b3cbcce051ab118a33dc (diff)
parentfa34b01aa0f59355206b0807f862cced06c2b7a1 (diff)
downloadlwn-docs-next.tar.gz
lwn-docs-next.zip
Merge branch 'docs-mw' into docs-nextdocs-next
Diffstat (limited to 'Documentation/process')
-rw-r--r--Documentation/process/deprecated.rst2
-rw-r--r--Documentation/process/maintainer-soc.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/process/deprecated.rst b/Documentation/process/deprecated.rst
index ac75b7ecac47..03de71f654c7 100644
--- a/Documentation/process/deprecated.rst
+++ b/Documentation/process/deprecated.rst
@@ -388,7 +388,7 @@ allocations. For example, these open coded assignments::
ptr = kmalloc_array(count, sizeof(*ptr), gfp);
ptr = kcalloc(count, sizeof(*ptr), gfp);
ptr = kmalloc(struct_size(ptr, flex_member, count), gfp);
- ptr = kmalloc(sizeof(struct foo, gfp);
+ ptr = kmalloc(sizeof(struct foo), gfp);
become, respectively::
diff --git a/Documentation/process/maintainer-soc.rst b/Documentation/process/maintainer-soc.rst
index a3a90a7d4c68..fa91dfc53783 100644
--- a/Documentation/process/maintainer-soc.rst
+++ b/Documentation/process/maintainer-soc.rst
@@ -60,7 +60,7 @@ All typical platform related patches should be sent via SoC submaintainers
shared defconfigs. Note that scripts/get_maintainer.pl might not provide
correct addresses for the shared defconfig, so ignore its output and manually
create CC-list based on MAINTAINERS file or use something like
-``scripts/get_maintainer.pl -f drivers/soc/FOO/``).
+``scripts/get_maintainer.pl -f drivers/soc/FOO/``.
Submitting Patches to the Main SoC Maintainers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~