mirror of https://github.com/acidanthera/audk.git
Fix ICC build error.
Signed-off-by: lzeng14 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11942 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
7708d08195
commit
271c79012d
|
@ -456,7 +456,7 @@ SataControllerStart (
|
|||
// A maximum of 32 ports can be supported. A value of '0h', indicating one port, is the minimum requirement.
|
||||
//
|
||||
Data32 = AhciReadReg (PciIo, R_AHCI_CAP);
|
||||
SataPrivateData->IdeInit.ChannelCount = (UINT8) (Data32 & B_AHCI_CAP_NPS + 1);
|
||||
SataPrivateData->IdeInit.ChannelCount = (UINT8) ((Data32 & B_AHCI_CAP_NPS) + 1);
|
||||
SataPrivateData->DeviceCount = AHCI_MAX_DEVICES;
|
||||
if ((Data32 & B_AHCI_CAP_SPM) == B_AHCI_CAP_SPM) {
|
||||
SataPrivateData->DeviceCount = AHCI_MULTI_MAX_DEVICES;
|
||||
|
|
Loading…
Reference in New Issue