summaryrefslogtreecommitdiff
path: root/src/radeon_video.c
diff options
context:
space:
mode:
authorAlex Deucher <alex@t41p.(none)>2006-11-22 13:38:01 -0500
committerAlex Deucher <alex@t41p.(none)>2006-11-22 13:38:01 -0500
commit8e0f57571228729cc40ed59266484ecc43819f44 (patch)
tree3d509a8643d1ec34d5c08d2a28fdd84ac8c8562a /src/radeon_video.c
parente4850610596a08082a528c38186268b72012e78c (diff)
Don't mess with the VIP bus on mobility chips. Seems to cause fan
problems on asus laptops (see bug 7463). We don't support video-in on any laptops at the moment anyway.
Diffstat (limited to 'src/radeon_video.c')
-rw-r--r--src/radeon_video.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/radeon_video.c b/src/radeon_video.c
index d4e1f0ac..21d0c305 100644
--- a/src/radeon_video.c
+++ b/src/radeon_video.c
@@ -1396,6 +1396,13 @@ RADEONAllocAdaptor(ScrnInfoPtr pScrn)
/* Initialize VIP bus */
RADEONVIP_init(pScrn, pPriv);
+
+ /* resetting the VIP bus causes problems with some mobility chips.
+ * we don't support video in on any mobility chips at the moment anyway
+ */
+ if (!info->IsMobility)
+ RADEONVIP_reset(pScrn, pPriv);
+
info->adaptor = adapt;
if(!xf86LoadSubModule(pScrn,"theatre_detect"))