Re: [PATCH v2 19/19] gpu: nova-core: firmware: parse `FalconUCodeDescV2` via `zerocopy`
Miguel Ojeda <[email protected]>
| Newsgroups | org.kernel.vger.linux-kbuild,org.kernel.vger.rust-for-linux |
|---|---|
| Message-ID | <CANiq72k-DOq2b=cr9NshGHyc9mOTv4kpamnKGiSUG9iOhtgMnw@mail.gmail.com> |
On Mon, Jun 8, 2026 at 4:36 PM Danilo Krummrich <[email protected]> wrote: > > There are still lots of other places in this file where FromBytes from the > transmute module is used, thus the file still has an explicit > transmute::FromBytes import. Exactly, it gets shadowed and thus the methods (well, associated functions) are not available in that case. For files that do not have this, then we don't need it, indeed. That why I mentioned in the Zulip discussion that this "incentivizes" developers to remove their old `transmute::`s so that they can remove the ugly line ;) Cheers, Miguel