1. Fixed tools_def.template to meet ICC build for IA32
2. Modified some source files to meet ICC build for IA32 and IPF. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3271 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -116,7 +116,7 @@ UhciSetRegBit (
|
||||
UINT16 Data;
|
||||
|
||||
Data = UhciReadReg (PciIo, Offset);
|
||||
Data |= Bit;
|
||||
Data = (UINT16) (Data |Bit);
|
||||
UhciWriteReg (PciIo, Offset, Data);
|
||||
}
|
||||
|
||||
@@ -141,7 +141,7 @@ UhciClearRegBit (
|
||||
UINT16 Data;
|
||||
|
||||
Data = UhciReadReg (PciIo, Offset);
|
||||
Data &= ~Bit;
|
||||
Data = (UINT16) (Data & ~Bit);
|
||||
UhciWriteReg (PciIo, Offset, Data);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user