From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: None (no SPF record) identity=mailfrom; client-ip=134.134.136.31; helo=mga06.intel.com; envelope-from=ryszard.knop@linux.intel.com; receiver=edk2-devel@lists.01.org Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (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 117E0208F7AA8 for ; Tue, 29 Jan 2019 06:26:09 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Jan 2019 06:26:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,537,1539673200"; d="scan'208";a="129831907" Received: from linux.intel.com ([10.54.29.200]) by orsmga002.jf.intel.com with ESMTP; 29 Jan 2019 06:26:09 -0800 Received: from torii (torii.igk.intel.com [10.102.24.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by linux.intel.com (Postfix) with ESMTPS id BBB58580550; Tue, 29 Jan 2019 06:26:07 -0800 (PST) Message-ID: <3deb87753b4cf0369812388f8b19743ceca10d99.camel@linux.intel.com> From: Ryszard Knop To: Ard Biesheuvel , edk2-devel@lists.01.org Cc: kamil.kacperski@intel.com, eric.jin@intel.com, pawel.orlowski@intel.com, michael.d.kinney@intel.com, harry.l.hsiung@intel.com Date: Tue, 29 Jan 2019 15:26:05 +0100 In-Reply-To: <20181106175833.26964-5-ard.biesheuvel@linaro.org> References: <20181106175833.26964-1-ard.biesheuvel@linaro.org> <20181106175833.26964-5-ard.biesheuvel@linaro.org> Organization: Intel Corporation User-Agent: Evolution 3.30.4 Mime-Version: 1.0 Subject: Re: [PATCH edk2-staging 04/19] IntelUndiPkg/GigUndiDxe: consistently use forward slashes as path separators X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jan 2019 14:26:10 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Reviewed-by: Ryszard Knop On Tue, 2018-11-06 at 18:58 +0100, ard.biesheuvela wrote: > Replace backslashes in paths with forward slashes to be compatible > with > non-Windows OSes. > > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Ard Biesheuvel > --- > IntelUndiPkg/GigUndiDxe/Decode.c | 2 +- > IntelUndiPkg/GigUndiDxe/GigUndiDxe.inf | 14 +++++++------- > IntelUndiPkg/GigUndiDxe/e1000_osdep.h | 4 ++-- > 3 files changed, 10 insertions(+), 10 deletions(-) > > diff --git a/IntelUndiPkg/GigUndiDxe/Decode.c > b/IntelUndiPkg/GigUndiDxe/Decode.c > index 14060db0d050..9f8a5a8c1c81 100644 > --- a/IntelUndiPkg/GigUndiDxe/Decode.c > +++ b/IntelUndiPkg/GigUndiDxe/Decode.c > @@ -27,7 +27,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE > POSSIBILITY OF SUCH DAMAGE. > > ******************************************************************** > *******/ > #include "e1000.h" > -#include > +#include > > /** This routine determines the operational state of the UNDI. It > updates the state flags in the > Command Descriptor Block based on information derived from the > GigAdapter instance data. > diff --git a/IntelUndiPkg/GigUndiDxe/GigUndiDxe.inf > b/IntelUndiPkg/GigUndiDxe/GigUndiDxe.inf > index 0e4462733df6..6c195872c00f 100644 > --- a/IntelUndiPkg/GigUndiDxe/GigUndiDxe.inf > +++ b/IntelUndiPkg/GigUndiDxe/GigUndiDxe.inf > @@ -115,13 +115,13 @@ AdapterInformation.c > AdapterInformation.h > Version.h > > -wol\wol.h > -wol\wol.c > -wol\wolimpl.h > -wol\wolimpl.c > -wol\wolfamily.c > -wol\wolinfo.c > -wol\wol_1G.c > +wol/wol.h > +wol/wol.c > +wol/wolimpl.h > +wol/wolimpl.c > +wol/wolfamily.c > +wol/wolinfo.c > +wol/wol_1G.c > > [sources.X64] > > diff --git a/IntelUndiPkg/GigUndiDxe/e1000_osdep.h > b/IntelUndiPkg/GigUndiDxe/e1000_osdep.h > index 01c0843a2c9a..4408b409a445 100644 > --- a/IntelUndiPkg/GigUndiDxe/e1000_osdep.h > +++ b/IntelUndiPkg/GigUndiDxe/e1000_osdep.h > @@ -31,8 +31,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE > POSSIBILITY OF SUCH DAMAGE. > > #include > #include > -#include > -#include > +#include > +#include > > #pragma warning(disable : 4244) > #pragma warning(disable : 4206)