Skip to content

Commit 72ddd52

Browse files
dbkindernashif
authored andcommitted
doc: fix misspellings in docs
Signed-off-by: David B. Kinder <[email protected]>
1 parent d389492 commit 72ddd52

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

doc/dts/device_tree.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Rather than hard coding every detail of a board's hardware into the
1818
operating system, the hardware-describing DTB is passed to the operating
1919
system at boot time. This allows the same compiled Linux kernel to support
2020
different hardware configurations within an architecture family (e.g., ARM,
21-
x86, PowerPC) and moves a significant part of the hardware description out of
21+
x86, PowerPC) and moves a significant part of the hardware description out of
2222
the kernel binary itself.
2323

2424
Traditional usage of device tree involves storing of the Device Tree Blob.

doc/kernel/other/interrupts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ which case the CONFIG_GEN_IRQ_VECTOR_TABLE option should be disabled.
277277

278278
Some architectures may reserve some initial vectors for system exceptions
279279
and declare this in a table elsewhere, in which case
280-
CONFIG_GEN_IRQ_START_VECTOR needs to be set to properly offset the indicies
280+
CONFIG_GEN_IRQ_START_VECTOR needs to be set to properly offset the indices
281281
in the table.
282282

283283
SW ISR Table

doc/porting/arch.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ some are optional:
2121
take when the CPU comes out of reset (required).
2222

2323
* **Interrupt and exception handling**: each architecture handles asynchronous
24-
and un-requested events in a specific manner (required).
24+
and unrequested events in a specific manner (required).
2525

2626
* **Thread context switching**: the Zephyr context switch is dependent on the
2727
ABI and each ISA has a different set of registers to save (required).

doc/subsystems/networking/l2-and-drivers.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ parameter here. The Ethernet L2 layer will update such information
9090
once the packet's Ethernet header has been successfully parsed.
9191

9292
In case :c:func:`net_recv_data()` call fails, it will be up to the
93-
device driver to un-reference the buffer via
93+
device driver to unreference the buffer via
9494
:c:func:`net_pkt_unref()`.
9595

9696
On sending, it is up to the device driver to send the buffer all at
9797
once, with all the fragments.
9898

9999
In case of a fully successful packet transmission only, the device
100-
driver must un-reference the buffer via `net_pkt_unref()`.
100+
driver must unreference the buffer via `net_pkt_unref()`.
101101

102102
Each Ethernet device driver will need, in the end, to call
103103
`NET_DEVICE_INIT_INSTANCE()` like this:
@@ -139,7 +139,7 @@ here as well. There are two specific differences however:
139139
:c:type:`struct net_if` send function. It turn, the implementation
140140
of :c:func:`ieee802154_radio_send()` will ensure the same behavior:
141141
sending one fragment at a time through :c:type:`struct
142-
ieee802154_radio_api` tx function, and un-referencing the buffer
142+
ieee802154_radio_api` tx function, and unreferencing the buffer
143143
only when all the transmission were successful.
144144

145145
Each IEEE 802.15.4 device driver, in the end, will need to call

doc/subsystems/networking/network-management-api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ more events that are relevant.
4444

4545
Two functions are available, `net_mgmt_add_event_callback()` for
4646
registering the callback function, and `net_mgmt_del_event_callback()`
47-
for un-registering. A helper function, `net_mgmt_init_event_cb()`, can
47+
for unregistering. A helper function, `net_mgmt_init_event_cb()`, can
4848
be used to ease the initialization of the callback structure.
4949

5050
When an event is raised that matches a registered event mask, the

0 commit comments

Comments
 (0)