Loading drivers/gpu/drm/drm_edid_load.c +1 −2 Original line number Diff line number Diff line Loading @@ -186,12 +186,11 @@ static u8 *edid_load(struct drm_connector *connector, char *name, goto relfw_out; } edid = kmalloc(fwsize, GFP_KERNEL); edid = kmemdup(fwdata, fwsize, GFP_KERNEL); if (edid == NULL) { err = -ENOMEM; goto relfw_out; } memcpy(edid, fwdata, fwsize); if (!drm_edid_block_valid(edid, 0, print_bad_edid)) { connector->bad_edid_counter++; Loading Loading
drivers/gpu/drm/drm_edid_load.c +1 −2 Original line number Diff line number Diff line Loading @@ -186,12 +186,11 @@ static u8 *edid_load(struct drm_connector *connector, char *name, goto relfw_out; } edid = kmalloc(fwsize, GFP_KERNEL); edid = kmemdup(fwdata, fwsize, GFP_KERNEL); if (edid == NULL) { err = -ENOMEM; goto relfw_out; } memcpy(edid, fwdata, fwsize); if (!drm_edid_block_valid(edid, 0, print_bad_edid)) { connector->bad_edid_counter++; Loading