summaryrefslogtreecommitdiff
path: root/linux-core/dvo_tfp410.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2008-05-30 15:03:12 +1000
committerDave Airlie <airlied@redhat.com>2008-05-30 15:10:04 +1000
commit9d38448ed33aaff324cc4bbe1e0878593e97d07d (patch)
treef6e1dcfb4d2fbdca3db979580ecce800d737feea /linux-core/dvo_tfp410.c
parent6aeef92c0cad784a5019ea90d97ab81f4e51fdd9 (diff)
modesetting: the great renaming.
Okay we have crtc, encoder and connectors. No more outputs exposed beyond driver internals I've broken intel tv connector stuff. Really for TV we should have one TV connector, with a sub property for the type of signal been driven over it
Diffstat (limited to 'linux-core/dvo_tfp410.c')
-rw-r--r--linux-core/dvo_tfp410.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/linux-core/dvo_tfp410.c b/linux-core/dvo_tfp410.c
index 64448509..c1d1aa96 100644
--- a/linux-core/dvo_tfp410.c
+++ b/linux-core/dvo_tfp410.c
@@ -207,16 +207,16 @@ out:
return false;
}
-static enum drm_output_status tfp410_detect(struct intel_dvo_device *dvo)
+static enum drm_connector_status tfp410_detect(struct intel_dvo_device *dvo)
{
- enum drm_output_status ret = output_status_disconnected;
+ enum drm_connector_status ret = connector_status_disconnected;
uint8_t ctl2;
if (tfp410_readb(dvo, TFP410_CTL_2, &ctl2)) {
if (ctl2 & TFP410_CTL_2_HTPLG)
- ret = output_status_connected;
+ ret = connector_status_connected;
else
- ret = output_status_disconnected;
+ ret = connector_status_disconnected;
}
return ret;