mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 06:16:46 +07:00
drm/edid: fix collision between two patches breaking build
this fixes a report that the new load code needed to be updated for ajax's validity changes. Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
f7f6c340f9
commit
2baf837799
@ -173,7 +173,7 @@ static int edid_load(struct drm_connector *connector, char *name,
|
|||||||
}
|
}
|
||||||
memcpy(edid, fwdata, fwsize);
|
memcpy(edid, fwdata, fwsize);
|
||||||
|
|
||||||
if (!drm_edid_block_valid(edid)) {
|
if (!drm_edid_block_valid(edid, 0)) {
|
||||||
DRM_ERROR("Base block of EDID firmware \"%s\" is invalid ",
|
DRM_ERROR("Base block of EDID firmware \"%s\" is invalid ",
|
||||||
name);
|
name);
|
||||||
kfree(edid);
|
kfree(edid);
|
||||||
@ -185,7 +185,7 @@ static int edid_load(struct drm_connector *connector, char *name,
|
|||||||
if (i != valid_extensions + 1)
|
if (i != valid_extensions + 1)
|
||||||
memcpy(edid + (valid_extensions + 1) * EDID_LENGTH,
|
memcpy(edid + (valid_extensions + 1) * EDID_LENGTH,
|
||||||
edid + i * EDID_LENGTH, EDID_LENGTH);
|
edid + i * EDID_LENGTH, EDID_LENGTH);
|
||||||
if (drm_edid_block_valid(edid + i * EDID_LENGTH))
|
if (drm_edid_block_valid(edid + i * EDID_LENGTH, i))
|
||||||
valid_extensions++;
|
valid_extensions++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user