Re: linux-next: manual merge of the rust tree with the origin tree

From: Miguel Ojeda

Date: Fri Apr 03 2026 - 08:58:51 EST


On Fri, Apr 3, 2026 at 2:35 PM Mark Brown <broonie@xxxxxxxxxx> wrote:
>
> +use core::mem::{
> + align_of,
> + size_of, //
> +};
> use core::num::NonZero;

Looks good -- it could be nice to take the chance to "merge" these two:

use core::{
mem::{
align_of,
size_of, //
},
num::NonZero, //
};

Thanks as usual!

Cheers,
Miguel