From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from g2t2353.austin.hpe.com (g2t2353.austin.hpe.com [15.233.44.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 49A0E21D2DD19 for ; Fri, 4 Aug 2017 13:26:07 -0700 (PDT) Received: from arm-build-server.us.rdlabs.hpecorp.net (arm-build-server.us.rdlabs.hpecorp.net [16.84.24.54]) by g2t2353.austin.hpe.com (Postfix) with ESMTP id 57AE169; Fri, 4 Aug 2017 20:28:19 +0000 (UTC) From: Thomas Palmer To: edk2-devel@lists.01.org Cc: jordan.l.justen@intel.com, lersek@redhat.com, brijesh.singh@amd.com, joseph.shifflett@hpe.com, Thomas Palmer Date: Fri, 4 Aug 2017 15:28:17 -0500 Message-Id: <1501878497-9324-1-git-send-email-thomas.palmer@hpe.com> X-Mailer: git-send-email 2.7.4 Subject: [PATCH v2 1/1] OvmfPkg/IoMmuDxe: Fix header guard macro X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2017 20:26:07 -0000 Correct the header guard macro Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Thomas Palmer --- 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.
Copyright (c) 2017, AMD Inc. All rights reserved.
+ (C) Copyright 2017 Hewlett Packard Enterprise Development LP
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 -- 2.7.4