diff mbox series

[v3] platform/x86: msi-wmi-platform: Fix spelling mistakes

Message ID 20240731001602.259338-1-luis.hernandez093@gmail.com (mailing list archive)
State Accepted, archived
Delegated to: Ilpo Järvinen
Headers show
Series [v3] platform/x86: msi-wmi-platform: Fix spelling mistakes | expand

Commit Message

Luis Felipe Hernandez July 31, 2024, 12:15 a.m. UTC
There were a few instances of typos that lead could to confusion
when reading. The following words have been corrected:
Binay -> Binary
singe -> single
chaged -> changed

Signed-off-by: Luis Felipe Hernandez <luis.hernandez093@gmail.com>
---
Changes in v3:
- Address review feedback regarding subject line 
- Link to v2 https://lore.kernel.org/all/20240729223649.135639-1-luis.hernandez093@gmail.com/
- Addres review feedback regarding empty commit message body
- Link to v1 https://lore.kernel.org/all/20240729164721.125708-1-luis.hernandez093@gmail.com/
---
 Documentation/wmi/devices/msi-wmi-platform.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Ilpo Järvinen July 31, 2024, 9:38 a.m. UTC | #1
On Tue, 30 Jul 2024 20:15:59 -0400, Luis Felipe Hernandez wrote:

> There were a few instances of typos that lead could to confusion
> when reading. The following words have been corrected:
> Binay -> Binary
> singe -> single
> chaged -> changed
> 
> 
> [...]


Thank you for your contribution, it has been applied to my local
review-ilpo branch. Note it will show up in the public
platform-drivers-x86/review-ilpo branch only once I've pushed my
local branch there, which might take a while.

The list of commits applied:
[1/1] platform/x86: msi-wmi-platform: Fix spelling mistakes
      commit: 6e73c490445ae77c52f62fcf9a49193d17c6f79a

--
 i.
diff mbox series

Patch

diff --git a/Documentation/wmi/devices/msi-wmi-platform.rst b/Documentation/wmi/devices/msi-wmi-platform.rst
index 29b1b2e6d42c..31a136942892 100644
--- a/Documentation/wmi/devices/msi-wmi-platform.rst
+++ b/Documentation/wmi/devices/msi-wmi-platform.rst
@@ -130,12 +130,12 @@  data using the `bmfdec <https://github.com/pali/bmfdec>`_ utility:
 
 Due to a peculiarity in how Windows handles the ``CreateByteField()`` ACPI operator (errors only
 happen when a invalid byte field is ultimately accessed), all methods require a 32 byte input
-buffer, even if the Binay MOF says otherwise.
+buffer, even if the Binary MOF says otherwise.
 
 The input buffer contains a single byte to select the subfeature to be accessed and 31 bytes of
 input data, the meaning of which depends on the subfeature being accessed.
 
-The output buffer contains a singe byte which signals success or failure (``0x00`` on failure)
+The output buffer contains a single byte which signals success or failure (``0x00`` on failure)
 and 31 bytes of output data, the meaning if which depends on the subfeature being accessed.
 
 WMI method Get_EC()
@@ -147,7 +147,7 @@  data contains a flag byte and a 28 byte controller firmware version string.
 The first 4 bits of the flag byte contain the minor version of the embedded controller interface,
 with the next 2 bits containing the major version of the embedded controller interface.
 
-The 7th bit signals if the embedded controller page chaged (exact meaning is unknown), and the
+The 7th bit signals if the embedded controller page changed (exact meaning is unknown), and the
 last bit signals if the platform is a Tigerlake platform.
 
 The MSI software seems to only use this interface when the last bit is set.