mirror of https://github.com/acidanthera/audk.git
Update the Guid Value of Ext SCSI Pass Thru Protocol
Minor update the ASSERT() statement in Switch Stack. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2609 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
21500a434a
commit
c75bbd0e5b
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
EFI_EXT_SCSI_PASS_THRU_PROTOCOL as defined in UEFI 2.0.
|
EFI_EXT_SCSI_PASS_THRU_PROTOCOL as defined in UEFI 2.0.
|
||||||
|
|
||||||
Copyright (c) 2006, Intel Corporation
|
Copyright (c) 2006 - 2007, Intel Corporation
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
#define EFI_EXT_SCSI_PASS_THRU_PROTOCOL_GUID \
|
#define EFI_EXT_SCSI_PASS_THRU_PROTOCOL_GUID \
|
||||||
{ \
|
{ \
|
||||||
0x1d3de7f0, 0x0807, 0x424f, {0xaa, 0x69, 0x11, 0xa5, 0x4e, 0x19, 0xa4, 0x6f } \
|
0x143b7632, 0xb81b, 0x4cb7, {0xab, 0xd3, 0xb6, 0x25, 0xa5, 0xb9, 0xbf, 0xfe } \
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef struct _EFI_EXT_SCSI_PASS_THRU_PROTOCOL EFI_EXT_SCSI_PASS_THRU_PROTOCOL;
|
typedef struct _EFI_EXT_SCSI_PASS_THRU_PROTOCOL EFI_EXT_SCSI_PASS_THRU_PROTOCOL;
|
||||||
|
|
|
@ -52,7 +52,8 @@ SwitchStack (
|
||||||
{
|
{
|
||||||
VA_LIST Marker;
|
VA_LIST Marker;
|
||||||
|
|
||||||
ASSERT (EntryPoint != NULL && NewStack != NULL);
|
ASSERT (EntryPoint != NULL);
|
||||||
|
ASSERT (NewStack != NULL);
|
||||||
|
|
||||||
VA_START (Marker, NewStack);
|
VA_START (Marker, NewStack);
|
||||||
|
|
||||||
|
|
|
@ -1974,7 +1974,7 @@
|
||||||
</Entry>
|
</Entry>
|
||||||
<Entry Name="ExtScsiPassThru">
|
<Entry Name="ExtScsiPassThru">
|
||||||
<C_Name>gEfiExtScsiPassThruProtocolGuid</C_Name>
|
<C_Name>gEfiExtScsiPassThruProtocolGuid</C_Name>
|
||||||
<GuidValue>1D3DE7F0-0807-424F-AA69-11A54E19A46F</GuidValue>
|
<GuidValue>143B7632-B81B-4CB7-ABD3-B625A5B9BFFE</GuidValue>
|
||||||
<HelpText/>
|
<HelpText/>
|
||||||
</Entry>
|
</Entry>
|
||||||
<Entry Name="TapeIo">
|
<Entry Name="TapeIo">
|
||||||
|
|
Loading…
Reference in New Issue