[haiku-commits] haiku: hrev45804 - src/add-ons/accelerants/radeon_hd/atombios

  • From: kallisti5@xxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 29 Jun 2013 20:37:59 +0200 (CEST)

hrev45804 adds 1 changeset to branch 'master'
old head: 4ce958fcd4d3476aea984a9318f33357475955f6
new head: f901b5b7fb9ebae4d4908014c1a5364353032ae6
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=f901b5b+%5E4ce958f

----------------------------------------------------------------------------

f901b5b: RadeonHD: Fix endian bugs in atombios header
  
  * Style is not correct, keep in mind
    that this header is 1:1 upstream code
  * Linux kernel commit:
    f4a2596cecfcfce1e0ac1df5a1603f7bf392c122
  * AMD does not license this stuff GPL

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45804
Commit:      f901b5b7fb9ebae4d4908014c1a5364353032ae6
URL:         http://cgit.haiku-os.org/haiku/commit/?id=f901b5b
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sat Jun 29 18:36:26 2013 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+)
src/add-ons/accelerants/radeon_hd/atombios/atombios.h | 2 ++

----------------------------------------------------------------------------

diff --git a/src/add-ons/accelerants/radeon_hd/atombios/atombios.h 
b/src/add-ons/accelerants/radeon_hd/atombios/atombios.h
index 634780a..c9c11af 100644
--- a/src/add-ons/accelerants/radeon_hd/atombios/atombios.h
+++ b/src/add-ons/accelerants/radeon_hd/atombios/atombios.h
@@ -459,6 +459,7 @@ typedef struct _COMPUTE_MEMORY_ENGINE_PLL_PARAMETERS_V3
   union
   {
     ATOM_COMPUTE_CLOCK_FREQ  ulClock;         //Input Parameter
+    ULONG ulClockParams;                      //ULONG access for BE
     ATOM_S_MPLL_FB_DIVIDER   ulFbDiv;         //Output Parameter
   };
   UCHAR   ucRefDiv;                           //Output Parameter      
@@ -491,6 +492,7 @@ typedef struct _COMPUTE_MEMORY_ENGINE_PLL_PARAMETERS_V5
   union
   {
     ATOM_COMPUTE_CLOCK_FREQ  ulClock;         //Input Parameter
+    ULONG ulClockParams;                      //ULONG access for BE
     ATOM_S_MPLL_FB_DIVIDER   ulFbDiv;         //Output Parameter
   };
   UCHAR   ucRefDiv;                           //Output Parameter      


Other related posts:

  • » [haiku-commits] haiku: hrev45804 - src/add-ons/accelerants/radeon_hd/atombios - kallisti5