diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2013-10-21 19:09:58 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-21 18:56:23 -0400 |
commit | 7e4d8a193f2f1b551dc8d10acca6aea4356f3b86 (patch) | |
tree | 1d0a6e4db7db0251e20b801f5930d944256d1310 /include | |
parent | c2f17e827b419918c856131f592df9521e1a38e3 (diff) |
mac802154: correct a typo in ieee802154_alloc_device() prototype
This has no other impact than a cosmetic one.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/mac802154.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/mac802154.h b/include/net/mac802154.h index d0d11df9cba1..807d6b7a943f 100644 --- a/include/net/mac802154.h +++ b/include/net/mac802154.h @@ -133,7 +133,7 @@ struct ieee802154_ops { /* Basic interface to register ieee802154 device */ struct ieee802154_dev * -ieee802154_alloc_device(size_t priv_data_lex, struct ieee802154_ops *ops); +ieee802154_alloc_device(size_t priv_data_len, struct ieee802154_ops *ops); void ieee802154_free_device(struct ieee802154_dev *dev); int ieee802154_register_device(struct ieee802154_dev *dev); void ieee802154_unregister_device(struct ieee802154_dev *dev); |