Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

rust: exports: improve grammar in commentary

Commit e26fa546042a ("rust: kbuild: auto generate helper exports")
added an errant "the" where one was not needed; remove it.

Signed-off-by: Tamir Duberstein <tamird@gmail.com>
Reviewed-by: Dirk Behme <dirk.behme@gmail.com>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Reviewed-by: Andreas Hindborg <a.hindborg@kernel.org>
Link: https://lore.kernel.org/r/20241009162358.27735-1-tamird@gmail.com
[ Reworded title. - Miguel ]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>

authored by

Tamir Duberstein and committed by
Miguel Ojeda
54c5dc52 06b919e3

+3 -3
+3 -3
rust/exports.c
··· 3 3 * A hack to export Rust symbols for loadable modules without having to redo 4 4 * the entire `include/linux/export.h` logic in Rust. 5 5 * 6 - * This requires the Rust's new/future `v0` mangling scheme because the default 7 - * one ("legacy") uses invalid characters for C identifiers (thus we cannot use 8 - * the `EXPORT_SYMBOL_*` macros). 6 + * This requires Rust's new/future `v0` mangling scheme because the default one 7 + * ("legacy") uses invalid characters for C identifiers (thus we cannot use the 8 + * `EXPORT_SYMBOL_*` macros). 9 9 * 10 10 * All symbols are exported as GPL-only to guarantee no GPL-only feature is 11 11 * accidentally exposed.