public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH edk2/MdePkg v1] Fix definition bug of Acpi62.h
@ 2018-01-30  5:51 Heyi Guo
  2018-01-30  5:51 ` [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT Heyi Guo
  0 siblings, 1 reply; 5+ messages in thread
From: Heyi Guo @ 2018-01-30  5:51 UTC (permalink / raw)
  To: leif.lindholm, linaro-uefi, edk2-devel, graeme.gregory
  Cc: ard.biesheuvel, michael.d.kinney, liming.gao, guoheyi,
	wanghuiqiang, huangming23, zhangjinsong2, mengfanrong, huangdaode,
	waip23, Heyi Guo

Correct processor struct of PPTT in Acpi62.h

Ming Huang (1):
  MdePkg ACPI: Correct processor struct of PPTT

 MdePkg/Include/IndustryStandard/Acpi62.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.9.1



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

* [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT
  2018-01-30  5:51 [PATCH edk2/MdePkg v1] Fix definition bug of Acpi62.h Heyi Guo
@ 2018-01-30  5:51 ` Heyi Guo
  2018-01-30  6:23   ` Zeng, Star
  0 siblings, 1 reply; 5+ messages in thread
From: Heyi Guo @ 2018-01-30  5:51 UTC (permalink / raw)
  To: leif.lindholm, linaro-uefi, edk2-devel, graeme.gregory
  Cc: ard.biesheuvel, michael.d.kinney, liming.gao, guoheyi,
	wanghuiqiang, huangming23, zhangjinsong2, mengfanrong, huangdaode,
	waip23, Heyi Guo

From: Ming Huang <huangming23@huawei.com>

The Type field of EFI_ACPI_6_2_PPTT_STRUCTURE_PROCESSOR should
be UINT8 as ACPI version 6.2 specification.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ming Huang <huangming23@huawei.com>
Signed-off-by: Heyi Guo <heyi.guo@linaro.org>
---
 MdePkg/Include/IndustryStandard/Acpi62.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MdePkg/Include/IndustryStandard/Acpi62.h b/MdePkg/Include/IndustryStandard/Acpi62.h
index 82d1425..2904d34 100644
--- a/MdePkg/Include/IndustryStandard/Acpi62.h
+++ b/MdePkg/Include/IndustryStandard/Acpi62.h
@@ -2569,7 +2569,7 @@ typedef struct {
 /// Processor hierarchy node structure
 ///
 typedef struct {
-  UINT32                                        Type;
+  UINT8                                         Type;
   UINT8                                         Length;
   UINT8                                         Reserved[2];
   EFI_ACPI_6_2_PPTT_STRUCTURE_PROCESSOR_FLAGS   Flags;
-- 
1.9.1



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

* Re: [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT
  2018-01-30  5:51 ` [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT Heyi Guo
@ 2018-01-30  6:23   ` Zeng, Star
  2018-01-30  9:06     ` Gao, Liming
  0 siblings, 1 reply; 5+ messages in thread
From: Zeng, Star @ 2018-01-30  6:23 UTC (permalink / raw)
  To: Heyi Guo, leif.lindholm@linaro.org, linaro-uefi@lists.linaro.org,
	edk2-devel@lists.01.org, graeme.gregory@linaro.org
  Cc: huangming23@huawei.com, ard.biesheuvel@linaro.org, Gao, Liming,
	mengfanrong@huawei.com, guoheyi@huawei.com,
	zhangjinsong2@huawei.com, Kinney, Michael D, waip23@126.com,
	wanghuiqiang@huawei.com, huangdaode@hisilicon.com, Zeng, Star

Reviewed-by: Star Zeng <star.zeng@intel.com>

Thanks,
Star
-----Original Message-----
From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Heyi Guo
Sent: Tuesday, January 30, 2018 1:52 PM
To: leif.lindholm@linaro.org; linaro-uefi@lists.linaro.org; edk2-devel@lists.01.org; graeme.gregory@linaro.org
Cc: huangming23@huawei.com; ard.biesheuvel@linaro.org; Gao, Liming <liming.gao@intel.com>; mengfanrong@huawei.com; guoheyi@huawei.com; Heyi Guo <heyi.guo@linaro.org>; zhangjinsong2@huawei.com; Kinney, Michael D <michael.d.kinney@intel.com>; waip23@126.com; wanghuiqiang@huawei.com; huangdaode@hisilicon.com
Subject: [edk2] [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT

From: Ming Huang <huangming23@huawei.com>

The Type field of EFI_ACPI_6_2_PPTT_STRUCTURE_PROCESSOR should be UINT8 as ACPI version 6.2 specification.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ming Huang <huangming23@huawei.com>
Signed-off-by: Heyi Guo <heyi.guo@linaro.org>
---
 MdePkg/Include/IndustryStandard/Acpi62.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MdePkg/Include/IndustryStandard/Acpi62.h b/MdePkg/Include/IndustryStandard/Acpi62.h
index 82d1425..2904d34 100644
--- a/MdePkg/Include/IndustryStandard/Acpi62.h
+++ b/MdePkg/Include/IndustryStandard/Acpi62.h
@@ -2569,7 +2569,7 @@ typedef struct {
 /// Processor hierarchy node structure
 ///
 typedef struct {
-  UINT32                                        Type;
+  UINT8                                         Type;
   UINT8                                         Length;
   UINT8                                         Reserved[2];
   EFI_ACPI_6_2_PPTT_STRUCTURE_PROCESSOR_FLAGS   Flags;
--
1.9.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel


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

* Re: [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT
  2018-01-30  6:23   ` Zeng, Star
@ 2018-01-30  9:06     ` Gao, Liming
  2018-01-31  1:58       ` Zeng, Star
  0 siblings, 1 reply; 5+ messages in thread
From: Gao, Liming @ 2018-01-30  9:06 UTC (permalink / raw)
  To: Zeng, Star, Heyi Guo, leif.lindholm@linaro.org,
	linaro-uefi@lists.linaro.org, edk2-devel@lists.01.org,
	graeme.gregory@linaro.org
  Cc: huangming23@huawei.com, ard.biesheuvel@linaro.org,
	mengfanrong@huawei.com, guoheyi@huawei.com,
	zhangjinsong2@huawei.com, Kinney, Michael D, waip23@126.com,
	wanghuiqiang@huawei.com, huangdaode@hisilicon.com

Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: Zeng, Star
>Sent: Tuesday, January 30, 2018 2:24 PM
>To: Heyi Guo <heyi.guo@linaro.org>; leif.lindholm@linaro.org; linaro-
>uefi@lists.linaro.org; edk2-devel@lists.01.org; graeme.gregory@linaro.org
>Cc: huangming23@huawei.com; ard.biesheuvel@linaro.org; Gao, Liming
><liming.gao@intel.com>; mengfanrong@huawei.com; guoheyi@huawei.com;
>zhangjinsong2@huawei.com; Kinney, Michael D
><michael.d.kinney@intel.com>; waip23@126.com;
>wanghuiqiang@huawei.com; huangdaode@hisilicon.com; Zeng, Star
><star.zeng@intel.com>
>Subject: RE: [edk2] [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct
>processor struct of PPTT
>
>Reviewed-by: Star Zeng <star.zeng@intel.com>
>
>Thanks,
>Star
>-----Original Message-----
>From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
>Heyi Guo
>Sent: Tuesday, January 30, 2018 1:52 PM
>To: leif.lindholm@linaro.org; linaro-uefi@lists.linaro.org; edk2-
>devel@lists.01.org; graeme.gregory@linaro.org
>Cc: huangming23@huawei.com; ard.biesheuvel@linaro.org; Gao, Liming
><liming.gao@intel.com>; mengfanrong@huawei.com; guoheyi@huawei.com;
>Heyi Guo <heyi.guo@linaro.org>; zhangjinsong2@huawei.com; Kinney,
>Michael D <michael.d.kinney@intel.com>; waip23@126.com;
>wanghuiqiang@huawei.com; huangdaode@hisilicon.com
>Subject: [edk2] [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor
>struct of PPTT
>
>From: Ming Huang <huangming23@huawei.com>
>
>The Type field of EFI_ACPI_6_2_PPTT_STRUCTURE_PROCESSOR should be
>UINT8 as ACPI version 6.2 specification.
>
>Contributed-under: TianoCore Contribution Agreement 1.1
>Signed-off-by: Ming Huang <huangming23@huawei.com>
>Signed-off-by: Heyi Guo <heyi.guo@linaro.org>
>---
> MdePkg/Include/IndustryStandard/Acpi62.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/MdePkg/Include/IndustryStandard/Acpi62.h
>b/MdePkg/Include/IndustryStandard/Acpi62.h
>index 82d1425..2904d34 100644
>--- a/MdePkg/Include/IndustryStandard/Acpi62.h
>+++ b/MdePkg/Include/IndustryStandard/Acpi62.h
>@@ -2569,7 +2569,7 @@ typedef struct {
> /// Processor hierarchy node structure
> ///
> typedef struct {
>-  UINT32                                        Type;
>+  UINT8                                         Type;
>   UINT8                                         Length;
>   UINT8                                         Reserved[2];
>   EFI_ACPI_6_2_PPTT_STRUCTURE_PROCESSOR_FLAGS   Flags;
>--
>1.9.1
>
>_______________________________________________
>edk2-devel mailing list
>edk2-devel@lists.01.org
>https://lists.01.org/mailman/listinfo/edk2-devel


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

* Re: [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT
  2018-01-30  9:06     ` Gao, Liming
@ 2018-01-31  1:58       ` Zeng, Star
  0 siblings, 0 replies; 5+ messages in thread
From: Zeng, Star @ 2018-01-31  1:58 UTC (permalink / raw)
  To: Heyi Guo, leif.lindholm@linaro.org, linaro-uefi@lists.linaro.org,
	edk2-devel@lists.01.org, graeme.gregory@linaro.org
  Cc: huangming23@huawei.com, ard.biesheuvel@linaro.org,
	mengfanrong@huawei.com, guoheyi@huawei.com,
	zhangjinsong2@huawei.com, Kinney, Michael D, waip23@126.com,
	wanghuiqiang@huawei.com, huangdaode@hisilicon.com, Gao, Liming,
	Zeng, Star

Just pushed the patch at 19ef86eec6ed67c11b6a942865b143123180d394 with Liming's and my RB.

Thanks,
Star
-----Original Message-----
From: Gao, Liming 
Sent: Tuesday, January 30, 2018 5:06 PM
To: Zeng, Star <star.zeng@intel.com>; Heyi Guo <heyi.guo@linaro.org>; leif.lindholm@linaro.org; linaro-uefi@lists.linaro.org; edk2-devel@lists.01.org; graeme.gregory@linaro.org
Cc: huangming23@huawei.com; ard.biesheuvel@linaro.org; mengfanrong@huawei.com; guoheyi@huawei.com; zhangjinsong2@huawei.com; Kinney, Michael D <michael.d.kinney@intel.com>; waip23@126.com; wanghuiqiang@huawei.com; huangdaode@hisilicon.com
Subject: RE: [edk2] [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT

Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: Zeng, Star
>Sent: Tuesday, January 30, 2018 2:24 PM
>To: Heyi Guo <heyi.guo@linaro.org>; leif.lindholm@linaro.org; linaro-
>uefi@lists.linaro.org; edk2-devel@lists.01.org; graeme.gregory@linaro.org
>Cc: huangming23@huawei.com; ard.biesheuvel@linaro.org; Gao, Liming
><liming.gao@intel.com>; mengfanrong@huawei.com; guoheyi@huawei.com;
>zhangjinsong2@huawei.com; Kinney, Michael D
><michael.d.kinney@intel.com>; waip23@126.com;
>wanghuiqiang@huawei.com; huangdaode@hisilicon.com; Zeng, Star
><star.zeng@intel.com>
>Subject: RE: [edk2] [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct
>processor struct of PPTT
>
>Reviewed-by: Star Zeng <star.zeng@intel.com>
>
>Thanks,
>Star
>-----Original Message-----
>From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
>Heyi Guo
>Sent: Tuesday, January 30, 2018 1:52 PM
>To: leif.lindholm@linaro.org; linaro-uefi@lists.linaro.org; edk2-
>devel@lists.01.org; graeme.gregory@linaro.org
>Cc: huangming23@huawei.com; ard.biesheuvel@linaro.org; Gao, Liming
><liming.gao@intel.com>; mengfanrong@huawei.com; guoheyi@huawei.com;
>Heyi Guo <heyi.guo@linaro.org>; zhangjinsong2@huawei.com; Kinney,
>Michael D <michael.d.kinney@intel.com>; waip23@126.com;
>wanghuiqiang@huawei.com; huangdaode@hisilicon.com
>Subject: [edk2] [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor
>struct of PPTT
>
>From: Ming Huang <huangming23@huawei.com>
>
>The Type field of EFI_ACPI_6_2_PPTT_STRUCTURE_PROCESSOR should be
>UINT8 as ACPI version 6.2 specification.
>
>Contributed-under: TianoCore Contribution Agreement 1.1
>Signed-off-by: Ming Huang <huangming23@huawei.com>
>Signed-off-by: Heyi Guo <heyi.guo@linaro.org>
>---
> MdePkg/Include/IndustryStandard/Acpi62.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/MdePkg/Include/IndustryStandard/Acpi62.h
>b/MdePkg/Include/IndustryStandard/Acpi62.h
>index 82d1425..2904d34 100644
>--- a/MdePkg/Include/IndustryStandard/Acpi62.h
>+++ b/MdePkg/Include/IndustryStandard/Acpi62.h
>@@ -2569,7 +2569,7 @@ typedef struct {
> /// Processor hierarchy node structure
> ///
> typedef struct {
>-  UINT32                                        Type;
>+  UINT8                                         Type;
>   UINT8                                         Length;
>   UINT8                                         Reserved[2];
>   EFI_ACPI_6_2_PPTT_STRUCTURE_PROCESSOR_FLAGS   Flags;
>--
>1.9.1
>
>_______________________________________________
>edk2-devel mailing list
>edk2-devel@lists.01.org
>https://lists.01.org/mailman/listinfo/edk2-devel


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

end of thread, other threads:[~2018-01-31  1:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-30  5:51 [PATCH edk2/MdePkg v1] Fix definition bug of Acpi62.h Heyi Guo
2018-01-30  5:51 ` [PATCH edk2/MdePkg v1] MdePkg ACPI: Correct processor struct of PPTT Heyi Guo
2018-01-30  6:23   ` Zeng, Star
2018-01-30  9:06     ` Gao, Liming
2018-01-31  1:58       ` Zeng, Star

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