projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d11aa88
)
drm/radeon/kms: add quirk for hp dc5750
author
Alex Deucher
<alexdeucher@gmail.com>
Wed, 28 Oct 2009 05:46:54 +0000
(
01:46
-0400)
committer
Dave Airlie
<airlied@redhat.com>
Wed, 28 Oct 2009 05:52:17 +0000
(15:52 +1000)
Doesn't have a tv-out port
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/radeon/radeon_combios.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/radeon/radeon_combios.c
b/drivers/gpu/drm/radeon/radeon_combios.c
index fcb9371bf057f06f86ad25f52b7c260c76fe6526..a36ede002ee471f215ee18a86a5f8d07a4623b3d 100644
(file)
--- a/
drivers/gpu/drm/radeon/radeon_combios.c
+++ b/
drivers/gpu/drm/radeon/radeon_combios.c
@@
-1587,6
+1587,12
@@
static bool radeon_apply_legacy_tv_quirks(struct drm_device *dev)
dev->pdev->subsystem_device == 0x009f)
return false;
+ /* HP dc5750 has non-existent TV port */
+ if (dev->pdev->device == 0x5974 &&
+ dev->pdev->subsystem_vendor == 0x103c &&
+ dev->pdev->subsystem_device == 0x280a)
+ return false;
+
return true;
}