diff options
author | Manasi Navare <manasi.d.navare@intel.com> | 2022-02-24 17:30:54 -0800 |
---|---|---|
committer | Manasi Navare <manasi.d.navare@intel.com> | 2022-03-01 11:37:21 -0800 |
commit | 62929726ef0ec72cbbe9440c5d125d4278b99894 (patch) | |
tree | 0c3be6ff6c76a49c05b5094f5ed74bb83de0e5bb | |
parent | cb1852783f790feae845006d062acb9e0a5d4304 (diff) |
drm/vrr: Set VRR capable prop only if it is attached to connectordrm-misc-fixes-2022-03-03
VRR capable property is not attached by default to the connector
It is attached only if VRR is supported.
So if the driver tries to call drm core set prop function without
it being attached that causes NULL dereference.
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Manasi Navare <manasi.d.navare@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220225013055.9282-1-manasi.d.navare@intel.com
-rw-r--r-- | drivers/gpu/drm/drm_connector.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c index a50c82bc2b2f..76a8c707c34b 100644 --- a/drivers/gpu/drm/drm_connector.c +++ b/drivers/gpu/drm/drm_connector.c @@ -2330,6 +2330,9 @@ EXPORT_SYMBOL(drm_connector_atomic_hdr_metadata_equal); void drm_connector_set_vrr_capable_property( struct drm_connector *connector, bool capable) { + if (!connector->vrr_capable_property) + return; + drm_object_property_set_value(&connector->base, connector->vrr_capable_property, capable); |