summaryrefslogtreecommitdiff
path: root/linux-core/drm_crtc.c
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@localhost.(none)>2008-03-04 17:50:59 +0000
committerAlan Hourihane <alanh@localhost.(none)>2008-03-05 10:35:46 +0000
commit5662934ee467c3a29f9551a40fc7b2f6ee16280a (patch)
tree539e993b40573e85407df876ae9def321d3f9435 /linux-core/drm_crtc.c
parent44a2209790e3f9651b72a884cc8539144b619d1c (diff)
Fix connector description table
Diffstat (limited to 'linux-core/drm_crtc.c')
-rw-r--r--linux-core/drm_crtc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/linux-core/drm_crtc.c b/linux-core/drm_crtc.c
index 1a4624c8..345569b6 100644
--- a/linux-core/drm_crtc.c
+++ b/linux-core/drm_crtc.c
@@ -48,7 +48,8 @@ static struct drm_prop_enum_list drm_dpms_enum_list[] =
{ DPMSModeOff, "Off" }
};
static struct drm_prop_enum_list drm_conn_enum_list[] =
-{ { ConnectorVGA, "VGA" },
+{ { ConnectorUnknown, "Unknown" },
+ { ConnectorVGA, "VGA" },
{ ConnectorDVII, "DVI-I" },
{ ConnectorDVID, "DVI-D" },
{ ConnectorDVIA, "DVI-A" },