summaryrefslogtreecommitdiff
path: root/drivers/gpu/nova-core/driver.rs
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2026-07-23 15:39:47 +0100
committerMark Brown <broonie@kernel.org>2026-07-23 15:39:47 +0100
commit83f3a44d969161d569712926dbe5df75eb1493fa (patch)
tree93adfc547c29700716dbfa8fc70d40a50c026655 /drivers/gpu/nova-core/driver.rs
parent868aa6daa6d714648dfbe126e1d6bc692b2d06dc (diff)
parent3fadfb9362cf1b7d0a775f406f011d78800d6054 (diff)
downloadlinux-next-83f3a44d969161d569712926dbe5df75eb1493fa.tar.gz
linux-next-83f3a44d969161d569712926dbe5df75eb1493fa.zip
Merge branch 'driver-core-next' of https://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git
# Conflicts: # include/linux/platform_device.h
Diffstat (limited to 'drivers/gpu/nova-core/driver.rs')
-rw-r--r--drivers/gpu/nova-core/driver.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nova-core/driver.rs b/drivers/gpu/nova-core/driver.rs
index 5738d4ac521b..48380ac15f68 100644
--- a/drivers/gpu/nova-core/driver.rs
+++ b/drivers/gpu/nova-core/driver.rs
@@ -15,7 +15,7 @@ use kernel::{
Atomic,
Relaxed, //
},
- types::ForLt,
+ types::CovariantForLt,
};
use crate::gpu::Gpu;
@@ -29,7 +29,7 @@ pub(crate) struct NovaCore<'bound> {
pub(crate) gpu: Gpu<'bound>,
bar: pci::Bar<'bound, BAR0_SIZE>,
#[allow(clippy::type_complexity)]
- _reg: auxiliary::Registration<'bound, ForLt!(())>,
+ _reg: auxiliary::Registration<'bound, CovariantForLt!(())>,
}
pub(crate) struct NovaCoreDriver;