mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 22:14:03 +02:00
Documentation: process: fix brackets
Fix missing ')' and needless ')' Signed-off-by: Manuel Ebner <manuelebner@mailbox.org> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Message-ID: <20260611064311.117023-2-manuelebner@mailbox.org>
This commit is contained in:
parent
b7851fa2c9
commit
120a64c802
|
|
@ -388,7 +388,7 @@ allocations. For example, these open coded assignments::
|
||||||
ptr = kmalloc_array(count, sizeof(*ptr), gfp);
|
ptr = kmalloc_array(count, sizeof(*ptr), gfp);
|
||||||
ptr = kcalloc(count, sizeof(*ptr), gfp);
|
ptr = kcalloc(count, sizeof(*ptr), gfp);
|
||||||
ptr = kmalloc(struct_size(ptr, flex_member, count), gfp);
|
ptr = kmalloc(struct_size(ptr, flex_member, count), gfp);
|
||||||
ptr = kmalloc(sizeof(struct foo, gfp);
|
ptr = kmalloc(sizeof(struct foo), gfp);
|
||||||
|
|
||||||
become, respectively::
|
become, respectively::
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
shared defconfigs. Note that scripts/get_maintainer.pl might not provide
|
||||||
correct addresses for the shared defconfig, so ignore its output and manually
|
correct addresses for the shared defconfig, so ignore its output and manually
|
||||||
create CC-list based on MAINTAINERS file or use something like
|
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
|
Submitting Patches to the Main SoC Maintainers
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user