From 415c4ad36683cd48244933278545b33eefe0e0bf Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Fri, 13 May 2011 03:17:31 +0000 Subject: [PATCH] correct incorrect read location of PLL data git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41467 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/accelerants/radeon_hd/accelerant.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/accelerants/radeon_hd/accelerant.h b/src/add-ons/accelerants/radeon_hd/accelerant.h index c48638fc8e..620874e0d7 100644 --- a/src/add-ons/accelerants/radeon_hd/accelerant.h +++ b/src/add-ons/accelerants/radeon_hd/accelerant.h @@ -89,7 +89,7 @@ inline uint32_t ReadPLL(int screenIndex, uint16_t offset) { write32(CLOCK_CNTL_INDEX, offset & PLL_ADDR); - return read32(CLOCK_CNTL_INDEX); + return read32(CLOCK_CNTL_DATA); }