From: Laszlo Ersek <lersek@redhat.com>
To: Antoine Coeur <Coeur@gmx.fr>, edk2-devel@lists.01.org
Subject: Re: [PATCH v2] ArmVirtPkg: Fix various typos
Date: Thu, 7 Feb 2019 14:33:36 +0100 [thread overview]
Message-ID: <1335c2cc-7697-96cb-9121-e8b88cbf31fe@redhat.com> (raw)
In-Reply-To: <trinity-70351b54-dcc4-4fc3-948b-343070d54ebf-1549468130483@3c-app-gmx-bs19>
On 02/06/19 16:48, Antoine Coeur wrote:
> Fix various typos in ArmVirtPkg.
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Coeur <coeur@gmx.fr>
> ---
> ArmVirtPkg/ArmVirt.dsc.inc | 2 +-
> ArmVirtPkg/Library/ArmVirtDxeHobLib/HobLib.c | 2 +-
> ArmVirtPkg/Library/BaseCachingPciExpressLib/PciExpressLib.c | 4 ++--
> .../FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.c | 6 +++---
> .../Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c | 6 +++---
> ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c | 4 ++--
> 6 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/ArmVirtPkg/ArmVirt.dsc.inc b/ArmVirtPkg/ArmVirt.dsc.inc
> index c47955be94..304a4b4d21 100644
> --- a/ArmVirtPkg/ArmVirt.dsc.inc
> +++ b/ArmVirtPkg/ArmVirt.dsc.inc
> @@ -333,7 +333,7 @@
> # Values are in EFI Pages (4K). DXE Core will make sure that
> # at least this much of each type of memory can be allocated
> # from a single memory range. This way you only end up with
> - # maximum of two fragements for each type in the memory map
> + # maximum of two fragments for each type in the memory map
> # (the memory used, and the free memory that was prereserved
> # but not used).
> #
> diff --git a/ArmVirtPkg/Library/ArmVirtDxeHobLib/HobLib.c b/ArmVirtPkg/Library/ArmVirtDxeHobLib/HobLib.c
> index 73a0fbd8a4..758bc91ab1 100644
> --- a/ArmVirtPkg/Library/ArmVirtDxeHobLib/HobLib.c
> +++ b/ArmVirtPkg/Library/ArmVirtDxeHobLib/HobLib.c
> @@ -1,5 +1,5 @@
> /** @file
> - HOB Library implemenation for Dxe Phase with DebugLib dependency removed
> + HOB Library implementation for Dxe Phase with DebugLib dependency removed
>
> Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
> Copyright (c) 2014, Linaro Ltd. All rights reserved.<BR>
> diff --git a/ArmVirtPkg/Library/BaseCachingPciExpressLib/PciExpressLib.c b/ArmVirtPkg/Library/BaseCachingPciExpressLib/PciExpressLib.c
> index 6479f53b37..a083826bab 100644
> --- a/ArmVirtPkg/Library/BaseCachingPciExpressLib/PciExpressLib.c
> +++ b/ArmVirtPkg/Library/BaseCachingPciExpressLib/PciExpressLib.c
> @@ -1238,7 +1238,7 @@ PciExpressBitFieldAndThenOr32 (
> Size into the buffer specified by Buffer. This function only allows the PCI
> configuration registers from a single PCI function to be read. Size is
> returned. When possible 32-bit PCI configuration read cycles are used to read
> - from StartAdress to StartAddress + Size. Due to alignment restrictions, 8-bit
> + from StartAddress to StartAddress + Size. Due to alignment restrictions, 8-bit
> and 16-bit PCI configuration read cycles may be used at the beginning and the
> end of the range.
>
> @@ -1338,7 +1338,7 @@ PciExpressReadBuffer (
> Size from the buffer specified by Buffer. This function only allows the PCI
> configuration registers from a single PCI function to be written. Size is
> returned. When possible 32-bit PCI configuration write cycles are used to
> - write from StartAdress to StartAddress + Size. Due to alignment restrictions,
> + write from StartAddress to StartAddress + Size. Due to alignment restrictions,
> 8-bit and 16-bit PCI configuration write cycles may be used at the beginning
> and the end of the range.
>
> diff --git a/ArmVirtPkg/Library/FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.c b/ArmVirtPkg/Library/FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.c
> index f0924dacbc..16c0e61816 100644
> --- a/ArmVirtPkg/Library/FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.c
> +++ b/ArmVirtPkg/Library/FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.c
> @@ -234,13 +234,13 @@ SerialPortGetControl (
> }
>
> /**
> - Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
> + Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
> data bits, and stop bits on a serial device.
>
> @param BaudRate The requested baud rate. A BaudRate value of 0 will use the
> device's default interface speed.
> On output, the value actually set.
> - @param ReveiveFifoDepth The requested depth of the FIFO on the receive side of the
> + @param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
> serial interface. A ReceiveFifoDepth value of 0 will use
> the device's default FIFO depth.
> On output, the value actually set.
> @@ -253,7 +253,7 @@ SerialPortGetControl (
> DefaultParity will use the device's default parity value.
> On output, the value actually set.
> @param DataBits The number of data bits to use on the serial device. A DataBits
> - vaule of 0 will use the device's default data bit setting.
> + value of 0 will use the device's default data bit setting.
> On output, the value actually set.
> @param StopBits The number of stop bits to use on this serial device. A StopBits
> value of DefaultStopBits will use the device's default number of
> diff --git a/ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c b/ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c
> index 8b736fd11f..2f10fb7b91 100644
> --- a/ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c
> +++ b/ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c
> @@ -156,13 +156,13 @@ SerialPortPoll (
> }
>
> /**
> - Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
> + Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
> data bits, and stop bits on a serial device.
>
> @param BaudRate The requested baud rate. A BaudRate value of 0 will use the
> device's default interface speed.
> On output, the value actually set.
> - @param ReveiveFifoDepth The requested depth of the FIFO on the receive side of the
> + @param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
> serial interface. A ReceiveFifoDepth value of 0 will use
> the device's default FIFO depth.
> On output, the value actually set.
> @@ -175,7 +175,7 @@ SerialPortPoll (
> DefaultParity will use the device's default parity value.
> On output, the value actually set.
> @param DataBits The number of data bits to use on the serial device. A DataBits
> - vaule of 0 will use the device's default data bit setting.
> + value of 0 will use the device's default data bit setting.
> On output, the value actually set.
> @param StopBits The number of stop bits to use on this serial device. A StopBits
> value of DefaultStopBits will use the device's default number of
> diff --git a/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c b/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c
> index bb07f5e22b..534357eff4 100644
> --- a/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c
> +++ b/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c
> @@ -779,11 +779,11 @@ PlatformBootManagerBeforeConsole (
> Do the platform specific action after the console is ready
> Possible things that can be done in PlatformBootManagerAfterConsole:
> > Console post action:
> - > Dynamically switch output mode from 100x31 to 80x25 for certain senarino
> + > Dynamically switch output mode from 100x31 to 80x25 for certain scenario
> > Signal console ready platform customized event
> > Run diagnostics like memory testing
> > Connect certain devices
> - > Dispatch aditional option roms
> + > Dispatch additional option roms
> > Special boot: e.g.: USB boot, enter UI
> **/
> VOID
>
Pushed as commit 7a90895306ac.
Thanks,
Laszlo
next prev parent reply other threads:[~2019-02-07 13:33 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-06 15:48 [PATCH v2] ArmVirtPkg: Fix various typos Antoine Coeur
2019-02-06 16:33 ` Laszlo Ersek
2019-02-06 22:33 ` Philippe Mathieu-Daudé
2019-02-07 13:33 ` Laszlo Ersek [this message]
2019-02-07 17:13 ` Antoine Coeur
2019-02-07 17:48 ` Philippe Mathieu-Daudé
2019-02-08 8:16 ` Laszlo Ersek
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=1335c2cc-7697-96cb-9121-e8b88cbf31fe@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