search for: devm_drm_dev_init_release

Displaying 2 results from an estimated 2 matches for "devm_drm_dev_init_release".

2024 Jul 26
2
[PATCH v2 02/37] drm/nouveau: handle pci/tegra drm_dev_{alloc, register} from common code
...implements a similar architecture, but it's really not that big a deal. > >> With the auxdev changes, it's *NVKM* that's >> attached to the PCI device, not the DRM driver (which is attached to an >> auxiliary device instead). >> >> This means that the devm_drm_dev_init_release() won't be called when the DRM >> driver detaches from its auxiliary device as it should, but when NVKM >> detaches from the PCI device, which isn't the most obvious and could lead to >> confusion. >> >> It also entirely blows up in the split module case as nou...
2020 Feb 25
7
[PATCH 0/3] Add separate non-KMS state; constify struct drm_driver
This patchset moves legacy, non-KMS driver state from struct drm_driver into struct drm_legacy_state. Only non-KMS drivers provide an instance of the latter structure. One special case is nouveau, which supports legacy interfaces. It also provides an instance of the legacy state if the legacy interfaces have been enabled (i.e., defines the config option CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT) I