From: Boris Brezillon <[email protected]> Currently the GEM inner driver data object is called `TyrObject` which is a fairly generic name. To make the code easier to understand, rename `TyrObject` to `BoData` so that the name better reflects its role.
No functional change is intended. Signed-off-by: Boris Brezillon <[email protected]> Co-developed-by: Deborah Brouwer <[email protected]> Signed-off-by: Deborah Brouwer <[email protected]> --- drivers/gpu/drm/tyr/driver.rs | 4 ++-- drivers/gpu/drm/tyr/gem.rs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/tyr/driver.rs b/drivers/gpu/drm/tyr/driver.rs index 9bc6ed56c45e..e5eae5a73371 100644 --- a/drivers/gpu/drm/tyr/driver.rs +++ b/drivers/gpu/drm/tyr/driver.rs @@ -36,7 +36,7 @@ use crate::{ file::TyrDrmFileData, - gem::TyrObject, + gem::BoData, gpu, gpu::GpuInfo, regs, // @@ -182,7 +182,7 @@ fn drop(self: Pin<&mut Self>) {} impl drm::Driver for TyrDrmDriver { type Data = TyrDrmDeviceData; type File = TyrDrmFileData; - type Object<R: drm::DeviceContext> = drm::gem::Object<TyrObject, R>; + type Object<R: drm::DeviceContext> = drm::gem::Object<BoData, R>; const INFO: drm::DriverInfo = INFO; diff --git a/drivers/gpu/drm/tyr/gem.rs b/drivers/gpu/drm/tyr/gem.rs index c59214e3d0ef..c1208d332dea 100644 --- a/drivers/gpu/drm/tyr/gem.rs +++ b/drivers/gpu/drm/tyr/gem.rs @@ -12,9 +12,9 @@ /// GEM Object inner driver data #[pin_data] -pub(crate) struct TyrObject {} +pub(crate) struct BoData {} -impl gem::DriverObject for TyrObject { +impl gem::DriverObject for BoData { type Driver = TyrDrmDriver; type Args = (); @@ -23,6 +23,6 @@ fn new<Ctx: DeviceContext>( _size: usize, _args: (), ) -> impl PinInit<Self, Error> { - try_pin_init!(TyrObject {}) + try_pin_init!(BoData {}) } } -- 2.52.0
