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 27AEE1A1DF9 for ; Fri, 9 Sep 2016 16:28:46 -0700 (PDT) Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B43D952777; Fri, 9 Sep 2016 23:28:45 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-33.phx2.redhat.com [10.3.116.33]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u89NSiDi010983; Fri, 9 Sep 2016 19:28:44 -0400 From: Laszlo Ersek To: edk2-devel-01 Cc: Jordan Justen , Thomas Huth Date: Sat, 10 Sep 2016 01:28:37 +0200 Message-Id: <20160909232840.2353-1-lersek@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Fri, 09 Sep 2016 23:28:45 +0000 (UTC) Subject: [PATCH 0/3] OvmfPkg: cosmetic fixes X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2016 23:28:46 -0000 Patch #3 was submitted by Thomas originally, and it was good, but it showed me that "OvmfPkg/Library/NvVarsFileLib/FsAccess.c" had LF line terminators actually. So I ran the following command, and went through the output: file $(find OvmfPkg/ -type f) | sort -t : -k 2b The command found the following types: #1 ASCII text, with CRLF line terminators #2 C source, ASCII text #3 C source, ASCII text, with CRLF line terminators #4 C source, UTF-8 Unicode text, with CRLF line terminators #5 POSIX shell script, ASCII text executable #6 Python script, ASCII text executable, with CRLF line terminators #7 a /usr/bin/env bash script, ASCII text executable >>From these, types #2 and #4 are problematic, so I added two patches in front of Thomas's to eliminate those file types (by converting the files). (I also ran the command on ArmVirtPkg, it was fine.) Public branch: . Cc: Jordan Justen Cc: Thomas Huth Thanks Laszlo Laszlo Ersek (2): OvmfPkg/IndustryStandard: make "Xen/grant_table.h" pure ASCII OvmfPkg: convert C files with LF line terminators to CRLF Thomas Huth (1): OvmfPkg: Fix typing errors OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c | 2 +- OvmfPkg/Csm/CsmSupportLib/LegacyPlatform.c | 4 +- OvmfPkg/Include/IndustryStandard/Xen/grant_table.h | 2 +- OvmfPkg/Library/NvVarsFileLib/FsAccess.c | 1034 ++++++++++---------- OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.c | 166 ++-- OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.h | 122 +-- OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c | 8 +- OvmfPkg/PlatformPei/MemDetect.c | 2 +- OvmfPkg/QemuVideoDxe/VbeShim.c | 2 +- OvmfPkg/SmbiosPlatformDxe/X86Xen.c | 196 ++-- OvmfPkg/VirtioRngDxe/VirtioRng.h | 92 +- OvmfPkg/XenBusDxe/EventChannel.c | 2 +- OvmfPkg/XenBusDxe/XenStore.c | 2 +- OvmfPkg/XenPvBlkDxe/BlockIo.c | 2 +- 14 files changed, 818 insertions(+), 818 deletions(-) -- 2.9.2