public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 1/2] MdePkg: Move gTraceHubDebugInfoHobGuid to MdePkg
@ 2023-06-26  3:42 victorx.hsu
  2023-06-26  3:42 ` [PATCH 2/2] Maintainers.txt: Move TraceHubDebugInfoHob.h " victorx.hsu
  0 siblings, 1 reply; 2+ messages in thread
From: victorx.hsu @ 2023-06-26  3:42 UTC (permalink / raw)
  To: devel
  Cc: VictorX Hsu, Liming Gao, Guo Gua, Chan Laura,
	Prakashan Krishnadas Veliyathuparambil, K N Karthik

From: VictorX Hsu <victorx.hsu@intel.com>

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4486

Move gTraceHubDebugInfoHobGuid to MdePkg.

Cc: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Guo Gua <gua.guo@intel.com>
Cc: Chan Laura <laura.chan@intel.com>
Cc: Prakashan Krishnadas Veliyathuparambil <krishnadas.veliyathuparambil.prakashan@intel.com>
Cc: K N Karthik <karthik.k.n@intel.com>
Signed-off-by: VictorX Hsu <victorx.hsu@intel.com>
---
 MdeModulePkg/MdeModulePkg.dec                               | 3 ---
 .../Include/Guid/TraceHubDebugInfoHob.h                     | 0
 MdePkg/MdePkg.dec                                           | 6 ++++++
 3 files changed, 6 insertions(+), 3 deletions(-)
 rename {MdeModulePkg => MdePkg}/Include/Guid/TraceHubDebugInfoHob.h (100%)

diff --git a/MdeModulePkg/MdeModulePkg.dec b/MdeModulePkg/MdeModulePkg.dec
index 95dd077e19..5b022b1f9f 100644
--- a/MdeModulePkg/MdeModulePkg.dec
+++ b/MdeModulePkg/MdeModulePkg.dec
@@ -439,9 +439,6 @@
   ## Include/UniversalPayload/SerialPortInfo.h
   gUniversalPayloadSerialPortInfoGuid = { 0xaa7e190d, 0xbe21, 0x4409, { 0x8e, 0x67, 0xa2, 0xcd, 0xf, 0x61, 0xe1, 0x70 } }
 
-  ## Include/Guid/TraceHubDebugInfoHob.h
-  gTraceHubDebugInfoHobGuid = { 0xf88c9c23, 0x646c, 0x4f6c, { 0x8e, 0x3d, 0x36, 0xa9, 0x43, 0xc1, 0x08, 0x35 } }
-
   ## GUID used for Boot Discovery Policy FormSet guid and related variables.
   gBootDiscoveryPolicyMgrFormsetGuid = { 0x5b6f7107, 0xbb3c, 0x4660, { 0x92, 0xcd, 0x54, 0x26, 0x90, 0x28, 0x0b, 0xbd } }
 
diff --git a/MdeModulePkg/Include/Guid/TraceHubDebugInfoHob.h b/MdePkg/Include/Guid/TraceHubDebugInfoHob.h
similarity index 100%
rename from MdeModulePkg/Include/Guid/TraceHubDebugInfoHob.h
rename to MdePkg/Include/Guid/TraceHubDebugInfoHob.h
diff --git a/MdePkg/MdePkg.dec b/MdePkg/MdePkg.dec
index b85614992b..3b5d1bac13 100644
--- a/MdePkg/MdePkg.dec
+++ b/MdePkg/MdePkg.dec
@@ -875,6 +875,12 @@
   ## Include/Protocol/CcMeasurement.h
   gEfiCcFinalEventsTableGuid     = { 0xdd4a4648, 0x2de7, 0x4665, { 0x96, 0x4d, 0x21, 0xd9, 0xef, 0x5f, 0xb4, 0x46 }}
 
+  #
+  # GUID used to store Trace Hub Debug information
+  #
+  ## Include/Guid/TraceHubDebugInfoHob.h
+  gTraceHubDebugInfoHobGuid = { 0xf88c9c23, 0x646c, 0x4f6c, { 0x8e, 0x3d, 0x36, 0xa9, 0x43, 0xc1, 0x08, 0x35 } }
+
 [Guids.IA32, Guids.X64]
   ## Include/Guid/Cper.h
   gEfiIa32X64ErrorTypeCacheCheckGuid = { 0xA55701F5, 0xE3EF, 0x43de, { 0xAC, 0x72, 0x24, 0x9B, 0x57, 0x3F, 0xAD, 0x2C }}
-- 
2.40.0.windows.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH 2/2] Maintainers.txt: Move TraceHubDebugInfoHob.h to MdePkg
  2023-06-26  3:42 [PATCH 1/2] MdePkg: Move gTraceHubDebugInfoHobGuid to MdePkg victorx.hsu
@ 2023-06-26  3:42 ` victorx.hsu
  0 siblings, 0 replies; 2+ messages in thread
From: victorx.hsu @ 2023-06-26  3:42 UTC (permalink / raw)
  To: devel
  Cc: VictorX Hsu, Michael D Kinney, Andrew Fish, Liming Gao, Guo Gua,
	Chan Laura, Prakashan Krishnadas Veliyathuparambil, K N Karthik

From: VictorX Hsu <victorx.hsu@intel.com>

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4486

Move TraceHubDebugInfoHob.h to MdePkg.

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Andrew Fish <afish@apple.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Guo Gua <gua.guo@intel.com>
Cc: Chan Laura <laura.chan@intel.com>
Cc: Prakashan Krishnadas Veliyathuparambil <krishnadas.veliyathuparambil.prakashan@intel.com>
Cc: K N Karthik <karthik.k.n@intel.com>
Signed-off-by: VictorX Hsu <victorx.hsu@intel.com>
---
 Maintainers.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Maintainers.txt b/Maintainers.txt
index c645df397c..5893a99ada 100644
--- a/Maintainers.txt
+++ b/Maintainers.txt
@@ -431,7 +431,6 @@ R: Gua Guo <gua.guo@intel.com> [gguo11837463]
 
 MdeModulePkg: Trace Hub debug message related library instance
 F: MdeModulePkg/Library/TraceHubDebugSysTLib/
-F: MdeModulePkg/Include/Guid/TraceHubDebugInfoHob.h
 M: Gua Guo <gua.guo@intel.com> [gguo11837463]
 M: Prakashan Krishnadas Veliyathuparambil <krishnadas.veliyathuparambil.prakashan@intel.com> [kprakas2]
 R: Chan Laura <laura.chan@intel.com> [lauracha]
@@ -449,6 +448,7 @@ F: MdePkg/Library/TraceHubDebugSysTLibNull/
 F: MdePkg/Library/MipiSysTLib/
 F: MdePkg/Include/Library/TraceHubDebugSysTLib.h
 F: MdePkg/Include/Library/MipiSysTLib.h
+F: MdePkg/Include/Guid/TraceHubDebugInfoHob.h
 M: Gua Guo <gua.guo@intel.com> [gguo11837463]
 M: Prakashan Krishnadas Veliyathuparambil <krishnadas.veliyathuparambil.prakashan@intel.com> [kprakas2]
 R: Chan Laura <laura.chan@intel.com> [lauracha]
-- 
2.40.0.windows.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-26  3:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-26  3:42 [PATCH 1/2] MdePkg: Move gTraceHubDebugInfoHobGuid to MdePkg victorx.hsu
2023-06-26  3:42 ` [PATCH 2/2] Maintainers.txt: Move TraceHubDebugInfoHob.h " victorx.hsu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox