drm/vc4: drv: Use drm_dev_unplug
authorMaxime Ripard <maxime@cerno.tech>
Thu, 16 Jun 2022 11:39:23 +0000 (13:39 +0200)
committerMaxime Ripard <maxime@cerno.tech>
Wed, 7 Sep 2022 08:53:01 +0000 (10:53 +0200)
commitab001897e03d38f2bc7fd3b393920ebbb017d6b7
treea6c15326df1c3eb07cda67b1d0119f77b62f22ff
parent2bfb28b977d0166e4d43393766516d74f216d89d
drm/vc4: drv: Use drm_dev_unplug

When our KMS driver is unbound, the device is no longer there but we might
still have users with an opened fd to the KMS device.

To avoid any issue in such a situation, every device access needs to be
protected by calls to drm_dev_enter() and drm_dev_exit(), and the driver
needs to call drm_dev_unplug().

We'll add calls to drm_dev_enter()/drm_dev_exit() in subsequent patches
changing the relevant drivers, but let's start by calling drm_dev_unplug().

Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
drivers/gpu/drm/vc4/vc4_drv.c