Re: [RESEND PATCH 4/5] drm: Add a drm_drv_enabled() helper function

2021-11-04 Thread Javier Martinez Canillas
Hello Jani, On 11/4/21 12:10, Jani Nikula wrote: > On Wed, 03 Nov 2021, Thomas Zimmermann wrote: >> Hi >> >> Am 03.11.21 um 14:41 schrieb Jani Nikula: >>> On Wed, 03 Nov 2021, Javier Martinez Canillas wrote: DRM drivers can use this to determine whether they can be enabled or not.

Re: [RESEND PATCH 4/5] drm: Add a drm_drv_enabled() helper function

2021-11-04 Thread Jani Nikula
On Wed, 03 Nov 2021, Thomas Zimmermann wrote: > Hi > > Am 03.11.21 um 14:41 schrieb Jani Nikula: >> On Wed, 03 Nov 2021, Javier Martinez Canillas wrote: >>> DRM drivers can use this to determine whether they can be enabled or not. >>> >>> For now it's just a wrapper around drm_modeset_disabled()

Re: [RESEND PATCH 4/5] drm: Add a drm_drv_enabled() helper function

2021-11-03 Thread Thomas Zimmermann
Hi Am 03.11.21 um 14:41 schrieb Jani Nikula: On Wed, 03 Nov 2021, Javier Martinez Canillas wrote: DRM drivers can use this to determine whether they can be enabled or not. For now it's just a wrapper around drm_modeset_disabled() but having the indirection level will allow to add other condit

Re: [RESEND PATCH 4/5] drm: Add a drm_drv_enabled() helper function

2021-11-03 Thread Jani Nikula
On Wed, 03 Nov 2021, Javier Martinez Canillas wrote: > DRM drivers can use this to determine whether they can be enabled or not. > > For now it's just a wrapper around drm_modeset_disabled() but having the > indirection level will allow to add other conditions besides "nomodeset". > > Suggested-by

[RESEND PATCH 4/5] drm: Add a drm_drv_enabled() helper function

2021-11-03 Thread Javier Martinez Canillas
DRM drivers can use this to determine whether they can be enabled or not. For now it's just a wrapper around drm_modeset_disabled() but having the indirection level will allow to add other conditions besides "nomodeset". Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas --