From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: insyde.com, ip: 210.71.195.41, mailfrom: nick.wang@insyde.com) Received: from out01.hibox.biz (out01.hibox.biz [210.71.195.41]) by groups.io with SMTP; Sun, 05 May 2019 20:10:38 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2AFAADIo89c/ww0GKxlGgEBAQEBAgE?= =?us-ascii?q?BAQEHAgEBAQGBUQUBAQEBCwGINYgcn1tjhRgUgWcQgXiCdYIrNAkOAQMBAQU?= =?us-ascii?q?BAQEBAoEVhXQEUQEoFBYEBwILAwIBAgFYAQcBAa8CfCUOGgIDhSmDG4FFgTI?= =?us-ascii?q?BgV+IUIJ1P4N1bIEOgnuDRYJYBJJTOjuTagcCggtSBJFvG4wnA4keLYNDlTy?= =?us-ascii?q?IAIFPgg4zGiODPYIZARcUjhiSJAEB?= X-IronPort-AV: E=Sophos;i="5.60,435,1549900800"; d="scan'208,217";a="35685642" Received: from unknown (HELO hb3-BKT202.hibox.biz) ([172.24.52.12]) by out01.hibox.biz with ESMTP; 06 May 2019 11:10:35 +0800 Received: from unknown (HELO hb3-BKT103.hibox.biz) ([172.24.51.13]) by hb3-BKT202.hibox.biz with ESMTP; 06 May 2019 11:10:34 +0800 Received: from unknown (HELO hb3-IN05.hibox.biz) ([172.24.12.15]) by hb3-BKT103.hibox.biz with ESMTP; 06 May 2019 11:10:35 +0800 X-Remote-IP: 60.250.30.118 X-Remote-Host: 60-250-30-118.hinet-ip.hinet.net X-SBRS: -1.7 X-MID: 25689482 X-Auth-ID: nick.wang@insyde.com X-EnvelopeFrom: nick.wang@insyde.com Received: from 60-250-30-118.hinet-ip.hinet.net (HELO [127.0.0.1]) ([60.250.30.118]) by hb3-IN05.hibox.biz with ESMTP/TLS/AES128-SHA; 06 May 2019 11:10:34 +0800 Message-ID: <5CCFA5AA.3040706@insyde.com> Date: Mon, 06 May 2019 11:10:34 +0800 From: Nick Wang User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: devel@edk2.groups.io CC: "@intel.com >> Jin", Eric , Supreeth.Venkatesh@arm.com, ruth.li@intel.com, leon.chen@insyde.com, "sunny.hsu@insyde.com >> sunny hsu" Subject: [edk2-devel][edk2-test][PATCH] EFI/Protocol: Fix to use VENDOR_DEVICE_PATH to create the Debug port device node for DevicePath related protocol tests. Content-Type: multipart/alternative; boundary="------------000407090505030608060704" --------------000407090505030608060704 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Follow edk2 tree hash: 9343d0a1cd09544686b14dba5b428d7bc811f6b9 to use VENDOR_DEVICE_PATH to create the Debug port device node. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Nick Wang --- .../BlackBoxTest/DevicePathFromTextBBTestCoverage.c | 13 +++++++------ .../BlackBoxTest/DevicePathToTextBBTestMain.c | 5 +++-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c index 96cd84fd..56128f2a 100644 --- a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c +++ b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c @@ -2,6 +2,7 @@ Copyright 2006 - 2017 Unified EFI, Inc. Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved. + Copyright (c) 2019, Insyde Software Corp. All Rights Reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -1114,13 +1115,13 @@ CreateDebugPortDeviceNode ( IN CHAR16 *TextDeviceNode ) { - VENDOR_DEFINED_MESSAGING_DEVICE_PATH *Vend; + VENDOR_DEVICE_PATH *Vend; - Vend = (VENDOR_DEFINED_MESSAGING_DEVICE_PATH *) CreateDeviceNode ( - DebugPortNodeType, - DebugPortNodeSubType, - sizeof(VENDOR_DEFINED_MESSAGING_DEVICE_PATH) - ); + Vend = (VENDOR_DEVICE_PATH *) CreateDeviceNode ( + DebugPortNodeType, + DebugPortNodeSubType, + sizeof(VENDOR_DEVICE_PATH) + ); Vend->Guid = gBlackBoxEfiDebugPortProtocolGuid; return (EFI_DEVICE_PATH_PROTOCOL *) Vend; diff --git a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathToText/BlackBoxTest/DevicePathToTextBBTestMain.c b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathToText/BlackBoxTest/DevicePathToTextBBTestMain.c index d0809776..2fe58337 100644 --- a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathToText/BlackBoxTest/DevicePathToTextBBTestMain.c +++ b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathToText/BlackBoxTest/DevicePathToTextBBTestMain.c @@ -2,6 +2,7 @@ Copyright 2006 - 2017 Unified EFI, Inc. Copyright (c) 2010 - 2019, Intel Corporation. All rights reserved. + Copyright (c) 2019, Insyde Software Corp. All Rights Reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -1708,9 +1709,9 @@ BuildDebugPortDeviceNode ( IN CHAR16 *TextDeviceNode ) { - VENDOR_DEFINED_MESSAGING_DEVICE_PATH *Vend; + VENDOR_DEVICE_PATH *Vend; - Vend = (VENDOR_DEFINED_MESSAGING_DEVICE_PATH *) CreateDeviceNode (0x3, 0x0a, sizeof (VENDOR_DEFINED_MESSAGING_DEVICE_PATH)); + Vend = (VENDOR_DEVICE_PATH *) CreateDeviceNode (0x3, 0x0a, sizeof (VENDOR_DEVICE_PATH)); Vend->Guid = gBlackBoxEfiDebugPortProtocolGuid; -- 2.19.1.windows.1 --------------000407090505030608060704 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 7bit Follow edk2 tree hash: 9343d0a1cd09544686b14dba5b428d7bc811f6b9 to use VENDOR_DEVICE_PATH to create the Debug port device node.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Nick Wang
---
.../BlackBoxTest/DevicePathFromTextBBTestCoverage.c | 13 +++++++------
.../BlackBoxTest/DevicePathToTextBBTestMain.c | 5 +++--
2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c
index 96cd84fd..56128f2a 100644
--- a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c
+++ b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c
@@ -2,6 +2,7 @@

Copyright 2006 - 2017 Unified EFI, Inc.

Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.

+ Copyright (c) 2019, Insyde Software Corp. All Rights Reserved.


This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -1114,13 +1115,13 @@ CreateDebugPortDeviceNode (
IN CHAR16 *TextDeviceNode
)
{
- VENDOR_DEFINED_MESSAGING_DEVICE_PATH *Vend;
+ VENDOR_DEVICE_PATH *Vend;

- Vend = (VENDOR_DEFINED_MESSAGING_DEVICE_PATH *) CreateDeviceNode (
- DebugPortNodeType,
- DebugPortNodeSubType,
- sizeof(VENDOR_DEFINED_MESSAGING_DEVICE_PATH)
- );
+ Vend = (VENDOR_DEVICE_PATH *) CreateDeviceNode (
+ DebugPortNodeType,
+ DebugPortNodeSubType,
+ sizeof(VENDOR_DEVICE_PATH)
+ );
Vend->Guid = gBlackBoxEfiDebugPortProtocolGuid;

return (EFI_DEVICE_PATH_PROTOCOL *) Vend;
diff --git a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathToText/BlackBoxTest/DevicePathToTextBBTestMain.c b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathToText/BlackBoxTest/DevicePathToTextBBTestMain.c
index d0809776..2fe58337 100644
--- a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathToText/BlackBoxTest/DevicePathToTextBBTestMain.c
+++ b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathToText/BlackBoxTest/DevicePathToTextBBTestMain.c
@@ -2,6 +2,7 @@

Copyright 2006 - 2017 Unified EFI, Inc.

Copyright (c) 2010 - 2019, Intel Corporation. All rights reserved.

+ Copyright (c) 2019, Insyde Software Corp. All Rights Reserved.


This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -1708,9 +1709,9 @@ BuildDebugPortDeviceNode (
IN CHAR16 *TextDeviceNode
)
{
- VENDOR_DEFINED_MESSAGING_DEVICE_PATH *Vend;
+ VENDOR_DEVICE_PATH *Vend;

- Vend = (VENDOR_DEFINED_MESSAGING_DEVICE_PATH *) CreateDeviceNode (0x3, 0x0a, sizeof (VENDOR_DEFINED_MESSAGING_DEVICE_PATH));
+ Vend = (VENDOR_DEVICE_PATH *) CreateDeviceNode (0x3, 0x0a, sizeof (VENDOR_DEVICE_PATH));

Vend->Guid = gBlackBoxEfiDebugPortProtocolGuid;

--
2.19.1.windows.1

--------------000407090505030608060704--