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

From: Miguel Ojeda

Date: Wed Sep 24 2025 - 08:56:26 EST


On Tue, Sep 16, 2025 at 3:01 PM Mark Brown <broonie@xxxxxxxxxx> wrote:
>
> + use crate::util;
> + use crate::vbios::Vbios;

I think these two lines should not be added back; otherwise, we get a warning:

error: unused import: `crate::util`
--> drivers/gpu/nova-core/gpu.rs:11:5
|
11 | use crate::util;
| ^^^^^^^^^^^
|
= note: `-D unused-imports` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(unused_imports)]`

error: unused import: `crate::vbios::Vbios`
--> drivers/gpu/nova-core/gpu.rs:12:5
|
12 | use crate::vbios::Vbios;
| ^^^^^^^^^^^^^^^^^^^

Thanks!

Cheers,
Miguel