diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2011-04-18 09:57:48 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2011-05-16 10:50:13 +1000 |
commit | 8c3f6bb970413c6a537736f409a1bc9d8abd671c (patch) | |
tree | 1f2d20429a7ef276dfcbca4fd4755a7693fd5107 /drivers/gpu/drm/nouveau/nouveau_bios.c | |
parent | eea55c89e504a4affe66367ba3ecbae16296d9ef (diff) | |
download | blackbird-op-linux-8c3f6bb970413c6a537736f409a1bc9d8abd671c.tar.gz blackbird-op-linux-8c3f6bb970413c6a537736f409a1bc9d8abd671c.zip |
drm/nouveau: recognise DCB connector type 0x41 as LVDS
After looking at a number of different logs, it appears 0x41 likely
indicates the presense of an LVDS panel following the SPWG spec
(http://www.spwg.org/)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bios.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index 8486dc6ee16c..729d5fd7c88d 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c @@ -6031,6 +6031,7 @@ parse_dcb_connector_table(struct nvbios *bios) case DCB_CONNECTOR_DVI_I: case DCB_CONNECTOR_DVI_D: case DCB_CONNECTOR_LVDS: + case DCB_CONNECTOR_LVDS_SPWG: case DCB_CONNECTOR_DP: case DCB_CONNECTOR_eDP: case DCB_CONNECTOR_HDMI_0: |