Message ID | 1501878497-9324-1-git-send-email-thomas.palmer@hpe.com |
---|---|
State | Accepted |
Commit | 8dccfa6d480765a60263bbe34947df8dbedb9e1d |
Headers | show |
Series | [edk2,v2,1/1] OvmfPkg/IoMmuDxe: Fix header guard macro | expand |
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 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
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 > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
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>
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(-) -- 2.7.4 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel