Set `ThisModule = super::DriverModule` to provide the correct module pointer for file operations ownership.
Signed-off-by: Alvin Sun <[email protected]> --- drivers/gpu/drm/tyr/driver.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/tyr/driver.rs b/drivers/gpu/drm/tyr/driver.rs index 279710b36a104..9eb4561ab831d 100644 --- a/drivers/gpu/drm/tyr/driver.rs +++ b/drivers/gpu/drm/tyr/driver.rs @@ -176,6 +176,7 @@ impl drm::Driver for TyrDrmDriver { type Data = TyrDrmDeviceData; type File = TyrDrmFileData; type Object = drm::gem::Object<TyrObject>; + type ThisModule = super::DriverModule; const INFO: drm::DriverInfo = INFO; -- 2.43.0

