drm/edid: rename struct drm_display_info *display to *info
Rename the local variable to info for consistency. 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/d35a50c714e21869afcabfafd5c5e590936b791a.1672826282.git.jani.nikula@intel.com
This commit is contained in:
parent
4ed29f398b
commit
26c2ff7734
@ -6011,14 +6011,14 @@ static void drm_parse_dsc_info(struct drm_hdmi_dsc_cap *hdmi_dsc,
|
|||||||
static void drm_parse_hdmi_forum_scds(struct drm_connector *connector,
|
static void drm_parse_hdmi_forum_scds(struct drm_connector *connector,
|
||||||
const u8 *hf_scds)
|
const u8 *hf_scds)
|
||||||
{
|
{
|
||||||
struct drm_display_info *display = &connector->display_info;
|
struct drm_display_info *info = &connector->display_info;
|
||||||
struct drm_hdmi_info *hdmi = &display->hdmi;
|
struct drm_hdmi_info *hdmi = &info->hdmi;
|
||||||
struct drm_hdmi_dsc_cap *hdmi_dsc = &hdmi->dsc_cap;
|
struct drm_hdmi_dsc_cap *hdmi_dsc = &hdmi->dsc_cap;
|
||||||
int max_tmds_clock = 0;
|
int max_tmds_clock = 0;
|
||||||
u8 max_frl_rate = 0;
|
u8 max_frl_rate = 0;
|
||||||
bool dsc_support = false;
|
bool dsc_support = false;
|
||||||
|
|
||||||
display->has_hdmi_infoframe = true;
|
info->has_hdmi_infoframe = true;
|
||||||
|
|
||||||
if (hf_scds[6] & 0x80) {
|
if (hf_scds[6] & 0x80) {
|
||||||
hdmi->scdc.supported = true;
|
hdmi->scdc.supported = true;
|
||||||
@ -6042,7 +6042,7 @@ static void drm_parse_hdmi_forum_scds(struct drm_connector *connector,
|
|||||||
max_tmds_clock = hf_scds[5] * 5000;
|
max_tmds_clock = hf_scds[5] * 5000;
|
||||||
|
|
||||||
if (max_tmds_clock > 340000) {
|
if (max_tmds_clock > 340000) {
|
||||||
display->max_tmds_clock = max_tmds_clock;
|
info->max_tmds_clock = max_tmds_clock;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (scdc->supported) {
|
if (scdc->supported) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user