@@ -90,14 +90,14 @@ parameter here. The Ethernet L2 layer will update such information
90
90
once the packet's Ethernet header has been successfully parsed.
91
91
92
92
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
94
94
:c:func: `net_pkt_unref() `.
95
95
96
96
On sending, it is up to the device driver to send the buffer all at
97
97
once, with all the fragments.
98
98
99
99
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() `.
101
101
102
102
Each Ethernet device driver will need, in the end, to call
103
103
`NET_DEVICE_INIT_INSTANCE() ` like this:
@@ -139,7 +139,7 @@ here as well. There are two specific differences however:
139
139
:c:type: `struct net_if ` send function. It turn, the implementation
140
140
of :c:func: `ieee802154_radio_send() ` will ensure the same behavior:
141
141
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
143
143
only when all the transmission were successful.
144
144
145
145
Each IEEE 802.15.4 device driver, in the end, will need to call
0 commit comments