[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1253721692-26165-1-git-send-email-ajax@redhat.com>
Date: Wed, 23 Sep 2009 12:01:29 -0400
From: Adam Jackson <ajax@...hat.com>
To: linux-kernel@...r.kernel.org
Cc: Adam Jackson <ajax@...hat.com>
Subject: [PATCH 1/4] drm/edid: const cleanup
Signed-off-by: Adam Jackson <ajax@...hat.com>
---
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
--
1.6.4.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists