From: Alexandre Belloni Date: Mon, 21 Oct 2013 17:09:58 +0000 (+0200) Subject: mac802154: correct a typo in ieee802154_alloc_device() prototype X-Git-Tag: upstream/snapshot3+hdmi~4119^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e4d8a193f2f1b551dc8d10acca6aea4356f3b86;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git mac802154: correct a typo in ieee802154_alloc_device() prototype This has no other impact than a cosmetic one. Signed-off-by: Alexandre Belloni Signed-off-by: David S. Miller --- diff --git a/include/net/mac802154.h b/include/net/mac802154.h index d0d11df..807d6b7 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);