diff options
| author | Thomas Zimmermann <[email protected]> | 2022-02-08 14:31:52 +0000 |
|---|---|---|
| committer | Thomas Zimmermann <[email protected]> | 2022-05-18 04:52:03 +0000 |
| commit | 315a8d00ac74c59a688a1a88c0ed97a7791d1c91 (patch) | |
| tree | d8a7dc9951ead2218c6e132457ed53f417f4cfe1 /drivers/gpu/drm/udl/udl_connector.c | |
| parent | drm/mgag200: Split up connector's mode_valid helper (diff) | |
| download | kernel-315a8d00ac74c59a688a1a88c0ed97a7791d1c91.tar.gz kernel-315a8d00ac74c59a688a1a88c0ed97a7791d1c91.zip | |
drm/udl: Set VGA connector
Set the connector type to VGA. The previously exported DVII type
isn't even supported by the driver.
Signed-off-by: Thomas Zimmermann <[email protected]>
Acked-by: Alex Deucher <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/udl/udl_connector.c')
| -rw-r--r-- | drivers/gpu/drm/udl/udl_connector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/udl/udl_connector.c b/drivers/gpu/drm/udl/udl_connector.c index 930574ad2bca..318fdb38b47a 100644 --- a/drivers/gpu/drm/udl/udl_connector.c +++ b/drivers/gpu/drm/udl/udl_connector.c @@ -128,7 +128,7 @@ struct drm_connector *udl_connector_init(struct drm_device *dev) connector = &udl_connector->connector; drm_connector_init(dev, connector, &udl_connector_funcs, - DRM_MODE_CONNECTOR_DVII); + DRM_MODE_CONNECTOR_VGA); drm_connector_helper_add(connector, &udl_connector_helper_funcs); connector->polled = DRM_CONNECTOR_POLL_HPD | |
