Re: [PATCH 2/2] gpu: nova-core: use FromSafeCast wherever possible
"Eliot Courtney" <[email protected]>
| Newsgroups | dev.linux.lists.nova-gpu,org.freedesktop.lists.dri-devel,org.kernel.vger.linux-kernel,org.kernel.vger.rust-for-linux |
|---|---|
| Message-ID | <[email protected]> |
On Fri Aug 28, 2026 at 2:33 PM JST, Alexandre Courbot wrote: > `FromSafeCast` should be preferred to the `*_as_*` family of functions > when it can be used (i.e. in non-const contexts), as it requires a > single import to perform all valid conversions. > > After this patch, the only remaining references to the `casts` module > are those done in const context, which means the `casts` import can be > removed once these are converted to use the `cv!` macro. > > Signed-off-by: Alexandre Courbot <[email protected]> > --- Reviewed-by: Eliot Courtney <[email protected]>