* [PATCH v2 1/1] OvmfPkg/IoMmuDxe: Fix header guard macro
@ 2017-08-04 20:28 Thomas Palmer
2017-08-04 23:23 ` Laszlo Ersek
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Palmer @ 2017-08-04 20:28 UTC (permalink / raw)
To: edk2-devel
Cc: jordan.l.justen, lersek, brijesh.singh, joseph.shifflett,
Thomas Palmer
Correct the header guard macro
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Thomas Palmer <thomas.palmer@hpe.com>
---
OvmfPkg/IoMmuDxe/AmdSevIoMmu.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h b/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
index 8b3962a8c395..073202968235 100644
--- a/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
+++ b/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
@@ -7,6 +7,7 @@
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
Copyright (c) 2017, AMD Inc. All rights reserved.<BR>
+ (C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR>
This program and the accompanying materials 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
@@ -17,8 +18,8 @@
**/
-#ifndef __AMD_SEV_IOMMU_H_
-#define __AMD_SEV_IOMMU_H
+#ifndef _AMD_SEV_IOMMU_H_
+#define _AMD_SEV_IOMMU_H_
#include <Protocol/IoMmu.h>
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2 1/1] OvmfPkg/IoMmuDxe: Fix header guard macro
2017-08-04 20:28 [PATCH v2 1/1] OvmfPkg/IoMmuDxe: Fix header guard macro Thomas Palmer
@ 2017-08-04 23:23 ` Laszlo Ersek
2017-08-04 23:29 ` Laszlo Ersek
0 siblings, 1 reply; 3+ messages in thread
From: Laszlo Ersek @ 2017-08-04 23:23 UTC (permalink / raw)
To: Thomas Palmer, edk2-devel
Cc: jordan.l.justen, brijesh.singh, joseph.shifflett
On 08/04/17 22:28, Thomas Palmer wrote:
> Correct the header guard macro
>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Thomas Palmer <thomas.palmer@hpe.com>
> ---
> OvmfPkg/IoMmuDxe/AmdSevIoMmu.h | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h b/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
> index 8b3962a8c395..073202968235 100644
> --- a/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
> +++ b/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
> @@ -7,6 +7,7 @@
>
> Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
> Copyright (c) 2017, AMD Inc. All rights reserved.<BR>
> + (C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR>
> This program and the accompanying materials 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
> @@ -17,8 +18,8 @@
>
> **/
>
> -#ifndef __AMD_SEV_IOMMU_H_
> -#define __AMD_SEV_IOMMU_H
> +#ifndef _AMD_SEV_IOMMU_H_
> +#define _AMD_SEV_IOMMU_H_
>
> #include <Protocol/IoMmu.h>
>
>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Commit 8dccfa6d4807.
Thanks!
Laszlo
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2 1/1] OvmfPkg/IoMmuDxe: Fix header guard macro
2017-08-04 23:23 ` Laszlo Ersek
@ 2017-08-04 23:29 ` Laszlo Ersek
0 siblings, 0 replies; 3+ messages in thread
From: Laszlo Ersek @ 2017-08-04 23:29 UTC (permalink / raw)
To: Thomas Palmer, edk2-devel; +Cc: jordan.l.justen
On 08/05/17 01:23, Laszlo Ersek wrote:
> On 08/04/17 22:28, Thomas Palmer wrote:
>> Correct the header guard macro
>>
>> Contributed-under: TianoCore Contribution Agreement 1.0
For the future: please use version 1.1 of the agreement:
https://github.com/tianocore/edk2/commit/b6538c118ae8
Thanks
Laszlo
>> Signed-off-by: Thomas Palmer <thomas.palmer@hpe.com>
>> ---
>> OvmfPkg/IoMmuDxe/AmdSevIoMmu.h | 5 +++--
>> 1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h b/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
>> index 8b3962a8c395..073202968235 100644
>> --- a/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
>> +++ b/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h
>> @@ -7,6 +7,7 @@
>>
>> Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
>> Copyright (c) 2017, AMD Inc. All rights reserved.<BR>
>> + (C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR>
>> This program and the accompanying materials 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
>> @@ -17,8 +18,8 @@
>>
>> **/
>>
>> -#ifndef __AMD_SEV_IOMMU_H_
>> -#define __AMD_SEV_IOMMU_H
>> +#ifndef _AMD_SEV_IOMMU_H_
>> +#define _AMD_SEV_IOMMU_H_
>>
>> #include <Protocol/IoMmu.h>
>>
>>
>
> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>
> Commit 8dccfa6d4807.
>
> Thanks!
> Laszlo
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-08-04 23:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-04 20:28 [PATCH v2 1/1] OvmfPkg/IoMmuDxe: Fix header guard macro Thomas Palmer
2017-08-04 23:23 ` Laszlo Ersek
2017-08-04 23:29 ` Laszlo Ersek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox