From: Manuel Ebner Date: Thu, 11 Jun 2026 06:43:12 +0000 (+0200) Subject: Documentation: process: fix brackets X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=120a64c8021dfc2487e17205ef62554982fe35ec;p=thirdparty%2Flinux.git Documentation: process: fix brackets Fix missing ')' and needless ')' Signed-off-by: Manuel Ebner Reviewed-by: Geert Uytterhoeven Signed-off-by: Jonathan Corbet Message-ID: <20260611064311.117023-2-manuelebner@mailbox.org> --- diff --git a/Documentation/process/deprecated.rst b/Documentation/process/deprecated.rst index ac75b7ecac470..03de71f654c76 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 a3a90a7d4c68f..fa91dfc537838 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 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~