From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: devel@edk2.groups.io, lersek@redhat.com
Cc: Antoine Coeur <Coeur@gmx.fr>
Subject: Re: [edk2-devel] [PATCH v3 00/78] Fix a bunch of typos (part 1)
Date: Tue, 11 Feb 2020 13:12:02 +0100 [thread overview]
Message-ID: <9572d2a7-77b4-3739-756a-9451da1b25b5@redhat.com> (raw)
In-Reply-To: <0f5d47ba-445e-ca1a-1c54-02a67920100b@redhat.com>
On 2/10/20 11:54 PM, Laszlo Ersek wrote:
> On 02/07/20 11:51, Laszlo Ersek wrote:
>> On 02/07/20 02:07, Philippe Mathieu-Daude wrote:
>>> Around February of this year, Antoine posted various patches fixing
>>> a huge quantity of typos, over 8000+ lines (such [1]).
>>>
>>> This series salvages a third of his work.
>>> I recommend to review the patches with using the '--word-diff=color'
>>> git option.
>>>
>>> All this series is reviewed by maintainers.
>>
>> OK. Please give all maintainers one day to re-check the feedback tags
>> on the patches for their respective subsystems. Then I'll merge this
>> next week.
>
> Merged via <https://github.com/tianocore/edk2/pull/357>, commit range
> 4b026f0d5af3..418aded9645d.
Thank you!
>
> Next time, please run "PatchCheck.py" locally, before posting a series;
> I had to fix up five patches in order to shut up "PatchCheck.py". See
I apologize, I thought I ran it.
> the range-diff below.
>
>> 1: 7f5eda987efd = 1: 7f5eda987efd CryptoPkg/OpensslLib: Fix few typos
>> 2: ba75d3ec9003 = 2: ba75d3ec9003 EmbeddedPkg/VirtualKeyboard: Fix a typo in EFI_INVALID_PARAMETER
>> 3: 74a044638dec = 3: 74a044638dec EmbeddedPkg/VirtualKeyboard: Fix few typos
>> 4: 3dcbb17bd95e = 4: 3dcbb17bd95e EmulatorPkg/Sec: Fix various typos
>> 5: 642c7dfe21a4 = 5: 642c7dfe21a4 EmulatorPkg/Unix: Fix various typos
>> 6: b71c6a6da260 = 6: b71c6a6da260 EmulatorPkg/Win: Fix various typos
>> 7: bebfc801c525 = 7: bebfc801c525 FatPkg/EnhancedFatDxe: Fix various typos
>> 8: 77a615654089 = 8: 77a615654089 FatPkg/FatPei: Fix few typos
>> 9: 450331e2e132 = 9: 450331e2e132 MdeModulePkg/Application: Improve French translation
>> 10: cacd66140239 = 10: cacd66140239 MdeModulePkg/Application: Fix various typos
>> 11: a1772d998501 ! 11: f9bbb675f9b0 MdeModulePkg/Bus/Ata: Fix various typos
>> @@ -12,6 +12,7 @@
>> Acked-by: Liming Gao <liming.gao@intel.com>
>> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
>> Message-Id: <20200207010831.9046-12-philmd@redhat.com>
>> + [lersek@redhat.com: replace EFI_D_xxx w/ DEBUG_xxx to shut up PatchCheck]
>>
>> diff --git a/MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.uni b/MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.uni
>> --- a/MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.uni
>> @@ -265,7 +266,7 @@
>> continue;
>> }
>> - DEBUG ((EFI_D_INFO, "port [%d] port mulitplier [%d] has a [%a]\n",
>> -+ DEBUG ((EFI_D_INFO, "port [%d] port multitplier [%d] has a [%a]\n",
>> ++ DEBUG ((DEBUG_INFO, "port [%d] port multitplier [%d] has a [%a]\n",
>> Port, 0, DeviceType == EfiIdeCdrom ? "cdrom" : "harddisk"));
>>
>> //
>> 12: de8e373ad7b6 = 12: ac3451ec8311 MdeModulePkg/Bus/I2c: Fix few typos
>> 13: 4c7605a742b4 = 13: 99893d662aec MdeModulePkg/Bus/Isa: Fix various typos
>> 14: 3d9a23971f8c = 14: 4dc57688cc1d MdeModulePkg/Bus/Scsi: Fix various typos
>> 15: 9e1bed03b5ce = 15: 8d73155d8ec8 MdeModulePkg/Bus/Sd: Fix various typos
>> 16: 6eb0104ff9b2 = 16: 5fa166315a3d MdeModulePkg/Core/Pei: Fix various typos
>> 17: 2c80000a6a42 = 17: 4072251896fc MdeModulePkg/Core/PiSmmCore: Fix various typos
>> 18: 858754b54a92 ! 18: b6ba5b3a4d69 MdeModulePkg/UsbBusDxe: Fix a typo
>> @@ -10,6 +10,7 @@
>> Acked-by: Liming Gao <liming.gao@intel.com>
>> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
>> Message-Id: <20200207010831.9046-19-philmd@redhat.com>
>> + [lersek@redhat.com: replace EFI_D_xxx w/ DEBUG_xxx to shut up PatchCheck]
>>
>> diff --git a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.c b/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.c
>> --- a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.c
>> @@ -19,7 +20,7 @@
>>
>> } else if (Setting->Desc.InterfaceNumber >= NumIf) {
>> - DEBUG (( EFI_D_ERROR, "UsbParseConfigDesc: mal-formated interface descriptor\n"));
>> -+ DEBUG (( EFI_D_ERROR, "UsbParseConfigDesc: malformatted interface descriptor\n"));
>> ++ DEBUG (( DEBUG_ERROR, "UsbParseConfigDesc: malformatted interface descriptor\n"));
>>
>> UsbFreeInterfaceDesc (Setting);
>> goto ON_ERROR;
>> 19: 5f2dccf30377 = 19: a6e8abb99f35 MdeModulePkg/UsbMass: Fix various typos
>> 20: bb345b43b01e = 20: bb83c14ca6c2 MdeModulePkg/UsbMouse: Fix few typos
>> 21: ed061696bfab = 21: 0bcaebbfe22e MdeModulePkg/UsbBus: Fix various typos
>> 22: beaaaecf3aec = 22: 407f235bcd50 MdeModulePkg/Usb: Fix various typos
>> 23: e94c5eb6268f = 23: aea0d04c4f32 MdePkg/IndustryStandard: Fix various typos
>> 24: 914f48b63bbf = 24: 5ae444260a4e MdePkg/Library/Dxe: Fix various typos
>> 25: 4c38ca18b611 = 25: ab6488e4abc8 MdePkg/Library/Pci: Fix various typos
>> 26: 53eebb54b563 = 26: 31596f3921e0 MdePkg/Library/Smm: Fix various typos
>> 27: 10e3d3a6f525 = 27: accf9892f70b MdePkg/Ppi: Fix various typos
>> 28: 86319876fc92 = 28: 76ae824bc492 MdePkg/Register: Fix various typos
>> 29: e2ef39c366e0 = 29: 86367f1d41da NetworkPkg: Fix a typo
>> 30: e0024a85bcd0 ! 30: c92bc3253956 NetworkPkg/ArpDxe: Fix various typos
>> @@ -12,6 +12,7 @@
>> Reviewed-by: Maciej Rabeda <maciej.rabeda@linux.intel.com>
>> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
>> Message-Id: <20200207010831.9046-31-philmd@redhat.com>
>> + [lersek@redhat.com: replace EFI_D_xxx w/ DEBUG_xxx to shut up PatchCheck]
>>
>> diff --git a/NetworkPkg/ArpDxe/ArpDriver.h b/NetworkPkg/ArpDxe/ArpDriver.h
>> --- a/NetworkPkg/ArpDxe/ArpDriver.h
>> @@ -182,7 +183,7 @@
>> );
>> if (EFI_ERROR (Status)) {
>> - DEBUG ((EFI_D_ERROR, "ArpSBCreateChild: faild to install ARP protocol, %r.\n", Status));
>> -+ DEBUG ((EFI_D_ERROR, "ArpSBCreateChild: failed to install ARP protocol, %r.\n", Status));
>> ++ DEBUG ((DEBUG_ERROR, "ArpSBCreateChild: failed to install ARP protocol, %r.\n", Status));
>>
>> FreePool (Instance);
>> return Status;
>> 31: a435ea26768c = 31: baf6b1b14063 NetworkPkg/Dhcp4Dxe: Fix various typos
>> 32: 102075ad1d0c = 32: aeffe53b51d7 NetworkPkg/Dhcp6Dxe: Fix various typos
>> 33: 65f171ce83a6 = 33: 767eda6a5a96 NetworkPkg/DnsDxe: Fix a typo
>> 34: 6aef4bccc11f = 34: b5f5ee2842eb NetworkPkg/DnsDxe: Fix various typos
>> 35: 47a56a0a2274 = 35: e134c167ad0b NetworkPkg/DpcDxe: Fix few typos
>> 36: 7faed4c098d5 = 36: 458f685e3dc2 NetworkPkg/HttpBootDxe: Fix a typo in variable name
>> 37: 94a5dc073d19 = 37: 7286ebdaf51e NetworkPkg/HttpBootDxe: Fix various typos
>> 38: fb5f95973700 = 38: 143e6a34a36d NetworkPkg/HttpDxe: Fix various typos
>> 39: 9df1e7822bfd = 39: f2704d02e2c0 NetworkPkg/Ip4Dxe: Fix various typos
>> 40: 44a31b75c04d = 40: 41e663bb39d4 NetworkPkg/Ip6Dxe: Fix various typos
>> 41: db1dfb369f4f = 41: bcb6d8220f62 NetworkPkg/IScsiDxe: Fix various typos
>> 42: 49a115621d40 = 42: 4ff477e0c2ce NetworkPkg/Library: Fix various typos
>> 43: 87334d54643f ! 43: f98ad27c8909 NetworkPkg/MnpDxe: Fix various typos
>> @@ -12,6 +12,7 @@
>> Reviewed-by: Maciej Rabeda <maciej.rabeda@intel.com>
>> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
>> Message-Id: <20200207010831.9046-44-philmd@redhat.com>
>> + [lersek@redhat.com: replace EFI_D_xxx w/ DEBUG_xxx to shut up PatchCheck]
>>
>> diff --git a/NetworkPkg/MnpDxe/MnpDxe.uni b/NetworkPkg/MnpDxe/MnpDxe.uni
>> --- a/NetworkPkg/MnpDxe/MnpDxe.uni
>> @@ -130,7 +131,7 @@
>> MnpServiceData = AllocateZeroPool (sizeof (MNP_SERVICE_DATA));
>> if (MnpServiceData == NULL) {
>> - DEBUG ((EFI_D_ERROR, "MnpCreateServiceData: Faild to allocate memory for the new Mnp Service Data.\n"));
>> -+ DEBUG ((EFI_D_ERROR, "MnpCreateServiceData: Failed to allocate memory for the new Mnp Service Data.\n"));
>> ++ DEBUG ((DEBUG_ERROR, "MnpCreateServiceData: Failed to allocate memory for the new Mnp Service Data.\n"));
>>
>> return NULL;
>> }
>> @@ -139,7 +140,7 @@
>> );
>> if (MnpServiceHandle == NULL) {
>> - DEBUG ((EFI_D_ERROR, "MnpCreateServiceData: Faild to create child handle.\n"));
>> -+ DEBUG ((EFI_D_ERROR, "MnpCreateServiceData: Failed to create child handle.\n"));
>> ++ DEBUG ((DEBUG_ERROR, "MnpCreateServiceData: Failed to create child handle.\n"));
>>
>> return NULL;
>> }
>> @@ -215,7 +216,7 @@
>> Instance = AllocateZeroPool (sizeof (MNP_INSTANCE_DATA));
>> if (Instance == NULL) {
>> - DEBUG ((EFI_D_ERROR, "MnpServiceBindingCreateChild: Faild to allocate memory for the new instance.\n"));
>> -+ DEBUG ((EFI_D_ERROR, "MnpServiceBindingCreateChild: Failed to allocate memory for the new instance.\n"));
>> ++ DEBUG ((DEBUG_ERROR, "MnpServiceBindingCreateChild: Failed to allocate memory for the new instance.\n"));
>>
>> return EFI_OUT_OF_RESOURCES;
>> }
>> 44: 094450f6c0eb = 44: ee1681fb67d1 NetworkPkg/Mtftp4Dxe: Fix various typos
>> 45: df1140f7f5d8 = 45: ae1ca547f58f NetworkPkg/Mtftp6Dxe: Fix various typos
>> 46: e37f1fab0306 = 46: 729072f3b20e NetworkPkg/SnpDxe: Fix few typos
>> 47: 9d376163fee4 = 47: f96ccd5f5739 NetworkPkg/TcpDxe/Sock: Fix few typos
>> 48: b980e77d960d = 48: 61da54b3d055 NetworkPkg/TcpDxe/Tcp: Fix various typos
>> 49: 0c0d9307aecf = 49: 9c8e57fa561a NetworkPkg/Tls: Fix few typos
>> 50: ebecc80b57f9 = 50: f0ab97e7e8c6 NetworkPkg/Udp4Dxe: Fix various typos
>> 51: 4885c4d196bf = 51: 8af99b448b95 NetworkPkg/Udp6Dxe: Fix various typos
>> 52: a31840160dc5 = 52: 9f5157a8fb26 NetworkPkg/UefiPxeBcDxe: Fix various typos
>> 53: 7ceaea6134c0 = 53: 3c2f8fc80384 NetworkPkg/VlanConfigDxe: Fix few typos
>> 54: c01a4ed33b55 = 54: 5e201ba3b9a7 OvmfPkg/Acpi: Fix few typos
>> 55: 822306d12bd0 = 55: 792a7bb39866 OvmfPkg/Csm: Fix various typos
>> 56: 5aeb3c4b3ab5 = 56: 3e0b04286a31 OvmfPkg/Csm/LegacyBios: Fix a typo
>> 57: d2dca4eb8b30 = 57: 058d765b6a02 OvmfPkg/Qemu: Fix various typos
>> 58: 5ca90062eb4b = 58: 05b2612a5954 OvmfPkg/Virtio: Fix few typos
>> 59: 818e3104bb0b = 59: c5e503ddad13 OvmfPkg/Xen: Fix a typo
>> 60: 9cab0f5e2e34 = 60: 6074abae1993 OvmfPkg/Xen: Fix various typos
>> 61: 88f988f563a1 = 61: 67353b4593e9 PcAtChipsetPkg: Fix few typos
>> 62: 32326b711a16 = 62: 8975132d1ca8 SecurityPkg: Fix few typos
>> 63: af10dedb74bb = 63: 9da9f15274e3 SecurityPkg/Hash2DxeCrypto: Fix few typos
>> 64: a80dccc95db2 = 64: 02da7c0d1774 SecurityPkg/Library/Tpm: Fix various typos
>> 65: f8c56867be27 ! 65: 3955df6c812e SecurityPkg/Tcg: Fix various typos
>> @@ -12,6 +12,7 @@
>> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
>> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
>> Message-Id: <20200207010831.9046-66-philmd@redhat.com>
>> + [lersek@redhat.com: replace EFI_D_xxx w/ DEBUG_xxx to shut up PatchCheck]
>>
>> diff --git a/SecurityPkg/Tcg/Tcg2Smm/Tcg2Smm.uni b/SecurityPkg/Tcg/Tcg2Smm/Tcg2Smm.uni
>> --- a/SecurityPkg/Tcg/Tcg2Smm/Tcg2Smm.uni
>> @@ -164,15 +165,6 @@
>> 512, // PayloadBufferSize,
>> Buffer // PayloadBuffer
>> );
>> -@@
>> - //
>> - // Create a Ready To Boot Event and Clear the MorControl bit in the call back function.
>> - //
>> -- DEBUG ((DEBUG_INFO, "TcgMor: Create ReadyToBoot Event for MorControl Bit cleaning!\n"));
>> -+ DEBUG ((EFI_D_INFO, "TcgMor: Create ReadyToBoot Event for MorControl Bit cleaning!\n"));
>> - Status = EfiCreateEventReadyToBootEx (
>> - TPL_CALLBACK,
>> - OnReadyToBoot,
>>
>> diff --git a/SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c b/SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c
>> --- a/SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c
>> 66: 197f928790c0 = 66: 541e220ac5f5 SecurityPkg/VariableAuthenticated: Fix few typos
>> 67: 68fc202d53ea = 67: 496c9c76af2d ShellPkg/Application: Fix various typos
>> 68: 260009cd71c2 = 68: eccbd3cf08e1 ShellPkg/DynamicCommand: Fix various typos
>> 69: 37471fda593c = 69: 48d54001c712 SignedCapsulePkg: Fix various typos
>> 70: 20cf83c78b21 = 70: 4aa9bef1af6c SignedCapsulePkg/Universal: Fix various typos
>> 71: a57e40322ec9 = 71: 6592d78e46e2 SourceLevelDebugPkg/DebugAgent: Fix various typos
>> 72: bae5e73219dd = 72: 3cf1128b2552 SourceLevelDebugPkg/DebugCommunicationLib: Fix various typos
>> 73: 665023beb3b5 = 73: 69dde9eeaf2d SourceLevelDebugPkg: Fix few typos
>> 74: 3f7ef1ff436b = 74: 581a738d0680 StandaloneMmPkg: Fix a typo
>> 75: 31a85c7de761 = 75: 85392ca0c245 StandaloneMmPkg: Fix few typos
>> 76: d526e855abb4 = 76: 69c2f626463c UefiCpuPkg/CpuDxe: Fix few typos
>> 77: e4ee906f3b59 = 77: c1db87423e5f UefiCpuPkg/PiSmm: Fix various typos
>> 78: 7c2e996f9ec1 = 78: bfaddb978ffa UefiCpuPkg/Smm: Fix various typos
>
> In particular, in patch 65 ("SecurityPkg/Tcg: Fix various typos"), the
> quoted hunk wasn't even a typo fix; it only changed DEBUG_INFO to
> EFI_D_INFO, which means it was purely a new bug. I only corrected the
> debug level macro to appease "PatchCheck.py", and that ended up dropping
> the whole hunk.
I think I probably messed this when rebasing (Antoine work was 1 year
old...).
>
> (This hunk should have been caught during patch review, of course.)
>
> Thank you Antoine and Phil for this large work!
> Laszlo
>
next prev parent reply other threads:[~2020-02-11 12:12 UTC|newest]
Thread overview: 84+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-07 1:07 [PATCH v3 00/78] Fix a bunch of typos (part 1) Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 01/78] CryptoPkg/OpensslLib: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 02/78] EmbeddedPkg/VirtualKeyboard: Fix a typo in EFI_INVALID_PARAMETER Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 03/78] EmbeddedPkg/VirtualKeyboard: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 04/78] EmulatorPkg/Sec: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 05/78] EmulatorPkg/Unix: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 06/78] EmulatorPkg/Win: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 07/78] FatPkg/EnhancedFatDxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 08/78] FatPkg/FatPei: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 09/78] MdeModulePkg/Application: Improve French translation Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 10/78] MdeModulePkg/Application: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 11/78] MdeModulePkg/Bus/Ata: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 12/78] MdeModulePkg/Bus/I2c: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 13/78] MdeModulePkg/Bus/Isa: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 14/78] MdeModulePkg/Bus/Scsi: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 15/78] MdeModulePkg/Bus/Sd: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 16/78] MdeModulePkg/Core/Pei: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 17/78] MdeModulePkg/Core/PiSmmCore: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 18/78] MdeModulePkg/UsbBusDxe: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 19/78] MdeModulePkg/UsbMass: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 20/78] MdeModulePkg/UsbMouse: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 21/78] MdeModulePkg/UsbBus: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 22/78] MdeModulePkg/Usb: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 23/78] MdePkg/IndustryStandard: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 24/78] MdePkg/Library/Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 25/78] MdePkg/Library/Pci: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 26/78] MdePkg/Library/Smm: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 27/78] MdePkg/Ppi: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 28/78] MdePkg/Register: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 29/78] NetworkPkg: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 30/78] NetworkPkg/ArpDxe: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 31/78] NetworkPkg/Dhcp4Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 32/78] NetworkPkg/Dhcp6Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 33/78] NetworkPkg/DnsDxe: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 34/78] NetworkPkg/DnsDxe: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 35/78] NetworkPkg/DpcDxe: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 36/78] NetworkPkg/HttpBootDxe: Fix a typo in variable name Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 37/78] NetworkPkg/HttpBootDxe: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 38/78] NetworkPkg/HttpDxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 39/78] NetworkPkg/Ip4Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 40/78] NetworkPkg/Ip6Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 41/78] NetworkPkg/IScsiDxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 42/78] NetworkPkg/Library: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 43/78] NetworkPkg/MnpDxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 44/78] NetworkPkg/Mtftp4Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 45/78] NetworkPkg/Mtftp6Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 46/78] NetworkPkg/SnpDxe: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 47/78] NetworkPkg/TcpDxe/Sock: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 48/78] NetworkPkg/TcpDxe/Tcp: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 49/78] NetworkPkg/Tls: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 50/78] NetworkPkg/Udp4Dxe: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 51/78] NetworkPkg/Udp6Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 52/78] NetworkPkg/UefiPxeBcDxe: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 53/78] NetworkPkg/VlanConfigDxe: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 54/78] OvmfPkg/Acpi: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 55/78] OvmfPkg/Csm: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 56/78] OvmfPkg/Csm/LegacyBios: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 57/78] OvmfPkg/Qemu: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 58/78] OvmfPkg/Virtio: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 59/78] OvmfPkg/Xen: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 60/78] OvmfPkg/Xen: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 61/78] PcAtChipsetPkg: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 62/78] SecurityPkg: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 63/78] SecurityPkg/Hash2DxeCrypto: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 64/78] SecurityPkg/Library/Tpm: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 65/78] SecurityPkg/Tcg: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 66/78] SecurityPkg/VariableAuthenticated: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 67/78] ShellPkg/Application: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 68/78] ShellPkg/DynamicCommand: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 69/78] SignedCapsulePkg: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 70/78] SignedCapsulePkg/Universal: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 71/78] SourceLevelDebugPkg/DebugAgent: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 72/78] SourceLevelDebugPkg/DebugCommunicationLib: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 73/78] SourceLevelDebugPkg: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 74/78] StandaloneMmPkg: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 75/78] StandaloneMmPkg: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 76/78] UefiCpuPkg/CpuDxe: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 77/78] UefiCpuPkg/PiSmm: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 78/78] UefiCpuPkg/Smm: " Philippe Mathieu-Daudé
2020-02-07 10:51 ` [PATCH v3 00/78] Fix a bunch of typos (part 1) Laszlo Ersek
2020-02-10 22:54 ` [edk2-devel] " Laszlo Ersek
2020-02-11 12:12 ` Philippe Mathieu-Daudé [this message]
2020-02-12 12:02 ` Laszlo Ersek
2020-02-12 17:01 ` Cœur
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9572d2a7-77b4-3739-756a-9451da1b25b5@redhat.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox