summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2008-12-16 15:43:16 +1000
committerDave Airlie <airlied@redhat.com>2008-12-16 15:43:16 +1000
commite3b08cb59716b525b3063b184eab70e32b9d66f0 (patch)
treeefd05c9ae775ffb0419fca0f4b69f8c3c4f92d68
parent1431bc6900b0e0d7f486b5b3ba281873472b3fdc (diff)
atombios: correct fix for previous issue.
I committed an old patch.
-rw-r--r--src/AtomBios/CD_Operations.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AtomBios/CD_Operations.c b/src/AtomBios/CD_Operations.c
index ff517465..6b285604 100644
--- a/src/AtomBios/CD_Operations.c
+++ b/src/AtomBios/CD_Operations.c
@@ -622,7 +622,7 @@ VOID ProcessClear(PARSER_TEMP_DATA STACK_BASED * pParserTempData)
if (pParserTempData->ParametersType.Destination == 0 &&
pParserTempData->Multipurpose.CurrentPort == ATI_RegsPort &&
pParserTempData->Index == 0) {
- pParserTempData->DestData32 &= 0xffffffff;
+ pParserTempData->DestData32 = 0;
} else
pParserTempData->DestData32 &= ~(AlignmentMask[pParserTempData->CD_Mask.SrcAlignment] << SourceAlignmentShift[pParserTempData->CD_Mask.SrcAlignment]);
PutDataFunctions[pParserTempData->ParametersType.Destination](pParserTempData);