radeon_hd: Fix pll DisplayPort endian bug.

This commit is contained in:
Alexander von Gluck IV 2012-04-06 10:28:33 -05:00
parent 6c09d41ccf
commit ece8e7a857
1 changed files with 1 additions and 1 deletions

View File

@ -587,7 +587,7 @@ pll_adjust(pll_info* pll, uint8 crtcID)
uint32 dpLinkSpeed
= dp_get_link_clock(connectorIndex);
args.v3.sInput.usPixelClock
= B_LENDIAN_TO_HOST_INT16(dpLinkSpeed / 10);
= B_HOST_TO_LENDIAN_INT16(dpLinkSpeed / 10);
} else if ((encoderFlags & ATOM_DEVICE_DFP_SUPPORT)
!= 0) {
#if 0