diff options
| author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2025-04-09 13:33:44 +0300 |
|---|---|---|
| committer | Danilo Krummrich <dakr@kernel.org> | 2025-06-25 20:07:03 +0200 |
| commit | d6b93bfa5d1eba452e494d3a05d6bef65bc569b7 (patch) | |
| tree | 5f3fc8fcc86bee09290d80ca612c669dd33a74d5 /drivers/gpu/drm | |
| parent | drm/connector: move HDR sink metadata to display info (diff) | |
| download | linux-d6b93bfa5d1eba452e494d3a05d6bef65bc569b7.tar.gz linux-d6b93bfa5d1eba452e494d3a05d6bef65bc569b7.zip | |
drm/nouveau/disp: Use dev->dev to get the device
The local variable dev points to drm->dev already, use dev directly.
Link: https://lore.kernel.org/r/20250409103344.3661603-1-sakari.ailus@linux.intel.com
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Diffstat (limited to 'drivers/gpu/drm')
| -rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c index add006fc8d81..c50ec347b30a 100644 --- a/drivers/gpu/drm/nouveau/nouveau_display.c +++ b/drivers/gpu/drm/nouveau/nouveau_display.c @@ -495,7 +495,7 @@ nouveau_display_hpd_work(struct work_struct *work) if (first_changed_connector) drm_connector_put(first_changed_connector); - pm_runtime_mark_last_busy(drm->dev->dev); + pm_runtime_mark_last_busy(dev->dev); noop: pm_runtime_put_autosuspend(dev->dev); } |
