Re: [PATCH] gpu: nova-core: depend on CONFIG_64BIT

2025-09-01 Thread Danilo Krummrich
On Fri Aug 29, 2025 at 12:39 AM CEST, Danilo Krummrich wrote: > If built on architectures with CONFIG_ARCH_DMA_ADDR_T_64BIT=y nova-core > produces that following build failures: > > error[E0308]: mismatched types > --> drivers/gpu/nova-core/fb.rs:49:59 >| > 49 | hal::f

Re: [PATCH] gpu: nova-core: depend on CONFIG_64BIT

2025-08-29 Thread Alexandre Courbot
On Fri Aug 29, 2025 at 7:39 AM JST, Danilo Krummrich wrote: > diff --git a/drivers/gpu/nova-core/Kconfig b/drivers/gpu/nova-core/Kconfig > index 8726d80d6ba4..20d3e6d0d796 100644 > --- a/drivers/gpu/nova-core/Kconfig > +++ b/drivers/gpu/nova-core/Kconfig > @@ -1,5 +1,6 @@ > config NOVA_CORE >

Re: [PATCH] gpu: nova-core: depend on CONFIG_64BIT

2025-08-28 Thread Alexandre Courbot
On Fri Aug 29, 2025 at 7:39 AM JST, Danilo Krummrich wrote: > If built on architectures with CONFIG_ARCH_DMA_ADDR_T_64BIT=y nova-core > produces that following build failures: > > error[E0308]: mismatched types > --> drivers/gpu/nova-core/fb.rs:49:59 >| > 49 | hal::fb_

Re: [PATCH] gpu: nova-core: depend on CONFIG_64BIT

2025-08-28 Thread John Hubbard
On 8/28/25 3:39 PM, Danilo Krummrich wrote: ... > diff --git a/drivers/gpu/nova-core/Kconfig b/drivers/gpu/nova-core/Kconfig > index 8726d80d6ba4..20d3e6d0d796 100644 > --- a/drivers/gpu/nova-core/Kconfig > +++ b/drivers/gpu/nova-core/Kconfig > @@ -1,5 +1,6 @@ > config NOVA_CORE > tristate "

[PATCH] gpu: nova-core: depend on CONFIG_64BIT

2025-08-28 Thread Danilo Krummrich
If built on architectures with CONFIG_ARCH_DMA_ADDR_T_64BIT=y nova-core produces that following build failures: error[E0308]: mismatched types --> drivers/gpu/nova-core/fb.rs:49:59 | 49 | hal::fb_hal(chipset).write_sysmem_flush_page(bar, page.dma_handle())?; |