diff options
author | Adam Jackson <ajax@redhat.com> | 2009-09-23 21:30:45 (GMT) |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-09-23 23:46:03 (GMT) |
commit | 083ae0560ab53b039aaa897b77458cbadf19050d (patch) | |
tree | 57bf4e3f71d994e65d66acfd60c40ad70539426e /drivers | |
parent | 5b31aee9d72f529ee6b60e8d66967f817a0e39fc (diff) | |
download | linux-fsl-qoriq-083ae0560ab53b039aaa897b77458cbadf19050d.tar.xz |
drm/edid: const cleanup
Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/drm_edid.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 90d76ba..3326987 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c @@ -109,7 +109,9 @@ static struct edid_quirk { /* 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 |