MdeModulePkg/DebugPortDxe: Fixed the ordering of the EFI_DEBUGPORT_PROTOCOL entries
The DebugPortRead and DebugPortWrite entries are reversed in the initialization of the EFI_DEBUGPORT_PROTOCOL structure (compare to the EFI_DEBUGPORT_PROTOCOL definition and the UEFI spec). Signed-off-by: oliviermartin Reviewed-by: rsun3 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13102 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
187cb3dd8d
commit
5a169fca47
|
@ -37,8 +37,8 @@ DEBUGPORT_DEVICE mDebugPortDevice = {
|
||||||
(EFI_DEVICE_PATH_PROTOCOL *) NULL,
|
(EFI_DEVICE_PATH_PROTOCOL *) NULL,
|
||||||
{
|
{
|
||||||
DebugPortReset,
|
DebugPortReset,
|
||||||
DebugPortRead,
|
|
||||||
DebugPortWrite,
|
DebugPortWrite,
|
||||||
|
DebugPortRead,
|
||||||
DebugPortPoll
|
DebugPortPoll
|
||||||
},
|
},
|
||||||
(EFI_HANDLE) 0,
|
(EFI_HANDLE) 0,
|
||||||
|
|
Loading…
Reference in New Issue