diff options
author | Jani Nikula <jani.nikula@intel.com> | 2023-01-04 13:05:27 +0300 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2023-01-19 15:04:15 +0300 |
commit | 783dedc535703ec6fa7c96754ac264b482821e2f (patch) | |
tree | 14e2e74eb04b40504a01b58398fb5dc86f7b7f7f /include/drm | |
parent | 852be13f3bd32c1eab808840cfac41b1fea25991 (diff) | |
download | linux-783dedc535703ec6fa7c96754ac264b482821e2f.tar.xz |
drm/edid: store quirks in display info
Although the quirks are internal to EDID parsing, it'll be helpful to
store them in display info to avoid having to pass them around.
This will also help separate adding probed modes (which needs the
quirks) from updating display info.
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/819b908f64ad2d158245917f436f24d33a65b95d.1672826282.git.jani.nikula@intel.com
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_connector.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h index 1c26c4e72c62..7b5048516185 100644 --- a/include/drm/drm_connector.h +++ b/include/drm/drm_connector.h @@ -728,6 +728,11 @@ struct drm_display_info { * @vics_len: Number of elements in vics. Internal to EDID parsing. */ int vics_len; + + /** + * @quirks: EDID based quirks. Internal to EDID parsing. + */ + u32 quirks; }; int drm_display_info_set_bus_formats(struct drm_display_info *info, |