Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 083ae056 authored by Adam Jackson's avatar Adam Jackson Committed by Dave Airlie
Browse files

drm/edid: const cleanup



Signed-off-by: default avatarAdam Jackson <ajax@redhat.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 5b31aee9
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -109,7 +109,9 @@ static struct edid_quirk {




/* Valid EDID header has these bytes */
/* Valid EDID header has these bytes */
static u8 edid_header[] = { 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00 };
static const u8 edid_header[] = {
	0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
};


/**
/**
 * edid_is_valid - sanity check EDID data
 * edid_is_valid - sanity check EDID data