Skip to content

Commit c00ebb8

Browse files
committed
ACPI: Fix typos
JIRA: https://issues.redhat.com/browse/RHEL-114092 commit f9db1fc Author: Bjorn Helgaas <bhelgaas@google.com> Date: Tue, 22 Jul 2025 17:12:41 +0000 Fix typos in documentation and comments. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Link: https://patch.msgid.link/20250722132653.GA2781885@bhelgaas Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Mark Langsdorf <mlangsdo@redhat.com>
1 parent d40d298 commit c00ebb8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Documentation/ABI/testing/sysfs-firmware-acpi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ Description:
108108
number of a "General Purpose Events" (GPE).
109109

110110
A GPE vectors to a specified handler in AML, which
111-
can do a anything the BIOS writer wants from
111+
can do anything the BIOS writer wants from
112112
OS context. GPE 0x12, for example, would vector
113113
to a level or edge handler called _L12 or _E12.
114114
The handler may do its business and return.
115-
Or the handler may send send a Notify event
115+
Or the handler may send a Notify event
116116
to a Linux device driver registered on an ACPI device,
117117
such as a battery, or a processor.
118118

119-
To figure out where all the SCI's are coming from,
119+
To figure out where all the SCIs are coming from,
120120
/sys/firmware/acpi/interrupts contains a file listing
121121
every possible source, and the count of how many
122122
times it has triggered::

Documentation/firmware-guide/acpi/gpio-properties.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ and polarity settings. The table below shows the expectations:
9292
| | Low | as low, assuming active |
9393
+-------------+-------------+-----------------------------------------------+
9494

95-
That said, for our above example the both GPIOs, since the bias setting
96-
is explicit and _DSD is present, will be treated as active with a high
95+
That said, for our above example, since the bias setting is explicit and
96+
_DSD is present, both GPIOs will be treated as active with a high
9797
polarity and Linux will configure the pins in this state until a driver
9898
reprograms them differently.
9999

drivers/acpi/bus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1406,7 +1406,7 @@ static int __init acpi_bus_init(void)
14061406
goto error1;
14071407

14081408
/*
1409-
* Register the for all standard device notifications.
1409+
* Register for all standard device notifications.
14101410
*/
14111411
status =
14121412
acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,

0 commit comments

Comments
 (0)