summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Pilcher <arequipeno@gmail.com>2012-04-22 11:40:26 -0500
committerDave Airlie <airlied@redhat.com>2012-04-27 08:25:13 +0100
commitc51a3fd66c3881b692335a7fe1654b0b08a90a21 (patch)
tree7e2094458f321bc65906755d613fcca713af6fa9
parentf89ec8a456dde7f18a13de77b4d79e6b05ca7c84 (diff)
drm: Store vendor IDs directly in the EDID quirk structure
EDID vendor IDs are always 3 characters long (4 with the terminating 0). It doesn't make any sense to have a (possibly 8-byte) pointer to the ID string in the quirk structure. Signed-off-by: Ian Pilcher <arequipeno@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--drivers/gpu/drm/drm_edid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index f425379e5aa0..608bddfc7e35 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -81,7 +81,7 @@ struct detailed_mode_closure {
#define LEVEL_CVT 3
static struct edid_quirk {
- char *vendor;
+ char vendor[4];
int product_id;
u32 quirks;
} edid_quirk_list[] = {