summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorImre Deak <imre.deak@intel.com>2013-08-02 17:13:21 +0300
committerImre Deak <imre.deak@intel.com>2013-08-19 16:38:21 +0300
commit9cbbce148f4a10aa7acf899d0f3cd47b98111cde (patch)
treeca8122690e1bae929f82bbb91f7be9641d8c8c8d /lib
parent9a9f13167a655613abfca4a7bc567727e33cfabd (diff)
lib: shorten DP/eDP connector names
Signed-off-by: Imre Deak <imre.deak@intel.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/drmtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/drmtest.c b/lib/drmtest.c
index 1c42fb06..02884832 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -1391,11 +1391,11 @@ struct type_name connector_type_names[] = {
{ DRM_MODE_CONNECTOR_LVDS, "LVDS" },
{ DRM_MODE_CONNECTOR_Component, "component" },
{ DRM_MODE_CONNECTOR_9PinDIN, "9-pin DIN" },
- { DRM_MODE_CONNECTOR_DisplayPort, "DisplayPort" },
+ { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
{ DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
{ DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
{ DRM_MODE_CONNECTOR_TV, "TV" },
- { DRM_MODE_CONNECTOR_eDP, "Embedded DisplayPort" },
+ { DRM_MODE_CONNECTOR_eDP, "eDP" },
};
type_name_fn(connector_type)