diff options
author | Dave Airlie <airlied@redhat.com> | 2012-05-24 07:55:14 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-05-24 07:55:14 +0100 |
commit | a1f47768309aa8b14b13f05ba01bb490024c4cbc (patch) | |
tree | 84cb18c88fcbfea8d3805c07b2563e64600c3e35 /src/radeon_modes.c | |
parent | c26e40cf60eb6a2bffb5ec7cba1f1bbffcbf1d53 (diff) |
radeon: fix a few more RHDAtomBiosFunc uses
I missed these in my initial search/replace for some reason.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/radeon_modes.c')
-rw-r--r-- | src/radeon_modes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_modes.c b/src/radeon_modes.c index d5635c96..215cde31 100644 --- a/src/radeon_modes.c +++ b/src/radeon_modes.c @@ -496,7 +496,7 @@ RADEONProbeOutputModes(xf86OutputPtr output) else modes = RADEONTVModes(output); } else if (radeon_output->active_device & (ATOM_DEVICE_CV_SUPPORT)) { - atomBiosResult = RHDAtomBiosFunc(pScrn->scrnIndex, info->atomBIOS, + atomBiosResult = RHDAtomBiosFunc(pScrn, info->atomBIOS, ATOMBIOS_GET_CV_MODES, &atomBiosArg); if (atomBiosResult == ATOM_SUCCESS) { modes = atomBiosArg.modes; @@ -514,7 +514,7 @@ RADEONProbeOutputModes(xf86OutputPtr output) #endif if (modes == NULL) { if ((radeon_output->active_device & (ATOM_DEVICE_LCD_SUPPORT)) && info->IsAtomBios) { - atomBiosResult = RHDAtomBiosFunc(pScrn->scrnIndex, + atomBiosResult = RHDAtomBiosFunc(pScrn, info->atomBIOS, ATOMBIOS_GET_PANEL_EDID, &atomBiosArg); if (atomBiosResult == ATOM_SUCCESS) { |