Re: [PATCH] Fixed "initialialized" typo in auxiliary.rs

From: Onur
Date: Tue Sep 16 2025 - 07:43:16 EST


On Tue, 16 Sep 2025 10:38:38 +0000
JaimeF <jaimefine6@xxxxxxxxx> wrote:

> From: Jaime Fan <jaimefine6@xxxxxxxxx>
>
> Suggested-by: onur-ozkan <contact@xxxxxxxxxxxxx>
> Link: https://github.com/Rust-for-Linux/linux/issues/1187
> Signed-off-by: Jaime F <jaimefine6@xxxxxxxxx>
> ---
> rust/kernel/auxiliary.rs | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rust/kernel/auxiliary.rs b/rust/kernel/auxiliary.rs
> index 58be09871..129eae8ff 100644
> --- a/rust/kernel/auxiliary.rs
> +++ b/rust/kernel/auxiliary.rs
> @@ -317,12 +317,12 @@ pub fn new(parent: &device::Device, name:
> &CStr, id: u32, modname: &CStr) -> Res
> // SAFETY:
> // - `adev` is guaranteed to be a valid pointer to a `struct
> auxiliary_device`, which has
> - // been initialialized,
> + // been initialized,
> // - `modname.as_char_ptr()` is a NULL terminated string.
> let ret = unsafe { bindings::__auxiliary_device_add(adev,
> modname.as_char_ptr()) }; if ret != 0 {
> // SAFETY: `adev` is guaranteed to be a valid pointer to
> a `struct auxiliary_device`,
> - // which has been initialialized.
> + // which has been initialized.
> unsafe { bindings::auxiliary_device_uninit(adev) };
>
> return Err(Error::from_errno(ret));

Thank you for fixing this!

Can you please use work@xxxxxxxxxxxxx address instead of
contact@xxxxxxxxxxxxx for both cc-list and suggested-by tag ? I am
not using contact@xxxxx for LKML.

-Onur