drm: Cocci spatch "memdup.spatch"
Signed-off-by: Thomas Meyer <thomas@m3y3r.de> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Родитель
edee06b6f6
Коммит
8d06cd0af6
|
@ -186,12 +186,11 @@ static u8 *edid_load(struct drm_connector *connector, char *name,
|
||||||
goto relfw_out;
|
goto relfw_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
edid = kmalloc(fwsize, GFP_KERNEL);
|
edid = kmemdup(fwdata, fwsize, GFP_KERNEL);
|
||||||
if (edid == NULL) {
|
if (edid == NULL) {
|
||||||
err = -ENOMEM;
|
err = -ENOMEM;
|
||||||
goto relfw_out;
|
goto relfw_out;
|
||||||
}
|
}
|
||||||
memcpy(edid, fwdata, fwsize);
|
|
||||||
|
|
||||||
if (!drm_edid_block_valid(edid, 0, print_bad_edid)) {
|
if (!drm_edid_block_valid(edid, 0, print_bad_edid)) {
|
||||||
connector->bad_edid_counter++;
|
connector->bad_edid_counter++;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче