summaryrefslogtreecommitdiff
path: root/Documentation/networking/ieee802154.txt
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2013-10-30 16:46:15 +0900
committerDavid S. Miller <davem@davemloft.net>2013-10-30 17:10:20 -0400
commitc17cb8b55b104c549aa20a72fa44141ad2c65ec2 (patch)
tree7082490d6e031e5c4a6b5be8393b830a58da4a84 /Documentation/networking/ieee802154.txt
parentb757a62e9f0df5c997c666dca4ad81197b5d8917 (diff)
doc:net: Fix typo in Documentation/networking
Correct spelling typo in Documentation/networking Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/networking/ieee802154.txt')
-rw-r--r--Documentation/networking/ieee802154.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/networking/ieee802154.txt b/Documentation/networking/ieee802154.txt
index 09eb57329f11..22bbc7225f8e 100644
--- a/Documentation/networking/ieee802154.txt
+++ b/Documentation/networking/ieee802154.txt
@@ -4,7 +4,7 @@
Introduction
============
-The IEEE 802.15.4 working group focuses on standartization of bottom
+The IEEE 802.15.4 working group focuses on standardization of bottom
two layers: Medium Access Control (MAC) and Physical (PHY). And there
are mainly two options available for upper layers:
- ZigBee - proprietary protocol from ZigBee Alliance
@@ -66,7 +66,7 @@ net_device, with .type = ARPHRD_IEEE802154. Data is exchanged with socket family
code via plain sk_buffs. On skb reception skb->cb must contain additional
info as described in the struct ieee802154_mac_cb. During packet transmission
the skb->cb is used to provide additional data to device's header_ops->create
-function. Be aware, that this data can be overriden later (when socket code
+function. Be aware that this data can be overridden later (when socket code
submits skb to qdisc), so if you need something from that cb later, you should
store info in the skb->data on your own.