Commit 72109368 authored by Dennis Munsie's avatar Dennis Munsie Committed by Dave Airlie

Removed hard coded EDID buffer size.

Signed-off-by: default avatarDennis Munsie <dmunsie@cecropia.com>
Acked-by: default avatarAntonino Daplas <adaplas@pol.net>
Signed-off-by: default avatarDave Airlie <airlied@linux.ie>
parent 7a532c69
......@@ -1036,10 +1036,10 @@ intelfb_init_var(struct intelfb_info *dinfo)
u8 *edid_d = NULL;
if (edid_s) {
edid_d = kmalloc(128, GFP_KERNEL);
edid_d = kmalloc(EDID_LENGTH, GFP_KERNEL);
if (edid_d) {
memcpy(edid_d, edid_s, 128);
memcpy(edid_d, edid_s, EDID_LENGTH);
fb_edid_to_monspecs(edid_d,
&dinfo->info->monspecs);
kfree(edid_d);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment