From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (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 39ABD21E1DAF2 for ; Fri, 4 Aug 2017 16:21:36 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 9C29DC058EA9; Fri, 4 Aug 2017 23:23:48 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 9C29DC058EA9 Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=lersek@redhat.com Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-20.phx2.redhat.com [10.3.116.20]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3C3E118C7F; Fri, 4 Aug 2017 23:23:47 +0000 (UTC) To: Thomas Palmer , edk2-devel@lists.01.org Cc: jordan.l.justen@intel.com, brijesh.singh@amd.com, joseph.shifflett@hpe.com References: <1501878497-9324-1-git-send-email-thomas.palmer@hpe.com> From: Laszlo Ersek Message-ID: <1ec431a5-0910-4d2b-0943-23a8cb00259c@redhat.com> Date: Sat, 5 Aug 2017 01:23:45 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <1501878497-9324-1-git-send-email-thomas.palmer@hpe.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Fri, 04 Aug 2017 23:23:49 +0000 (UTC) Subject: Re: [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 23:21:36 -0000 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit 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 > --- > 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 > > Reviewed-by: Laszlo Ersek Commit 8dccfa6d4807. Thanks! Laszlo