From 139848f37a5f88530689074225a4da795c7bd6bd Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Thu, 27 Oct 2011 18:03:02 +0000 Subject: [PATCH] * bailing when we can't idle the MC is the correct behaviour... but while things are incomplete it may be better to try and push on. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42929 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/accelerants/radeon_hd/gpu.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/add-ons/accelerants/radeon_hd/gpu.cpp b/src/add-ons/accelerants/radeon_hd/gpu.cpp index 25a290b3d7..4ace4dfa47 100644 --- a/src/add-ons/accelerants/radeon_hd/gpu.cpp +++ b/src/add-ons/accelerants/radeon_hd/gpu.cpp @@ -245,9 +245,9 @@ radeon_gpu_mc_setup_r600() uint32 idleState = radeon_gpu_mc_idlecheck(); if (idleState > 0) { - TRACE("%s: Cannot modify non-idle MC! idleState: 0x%" B_PRIX32 "\n", + ERROR("%s: Cannot modify non-idle MC! idleState: 0x%" B_PRIX32 "\n", __func__, idleState); - return B_ERROR; + //return B_ERROR; } // TODO: Memory Controller AGP @@ -277,9 +277,9 @@ radeon_gpu_mc_setup_r600() idleState = radeon_gpu_mc_idlecheck(); if (idleState > 0) { - TRACE("%s: Cannot modify non-idle MC! idleState: 0x%" B_PRIX32 "\n", + ERROR("%s: Cannot modify non-idle MC! idleState: 0x%" B_PRIX32 "\n", __func__, idleState); - return B_ERROR; + //return B_ERROR; } radeon_gpu_mc_resume();