diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-10-25 05:25:08 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-10-25 08:07:30 +0200 |
commit | 139f14adab08223fda55759cb93b9b80ba4bfee7 (patch) | |
tree | dc38dc5acc5ed0d4ea7fa15cb10cc0a7c66bf109 /net/mac802154/ieee802154_dev.c | |
parent | ieee802154: mac802154: remove FSF address (diff) | |
download | linux-139f14adab08223fda55759cb93b9b80ba4bfee7.tar.xz linux-139f14adab08223fda55759cb93b9b80ba4bfee7.zip |
ieee802154: ieee802154_dev: fix align typo
This patch fix a typo and fix align instead allign.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to '')
-rw-r--r-- | net/mac802154/ieee802154_dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac802154/ieee802154_dev.c b/net/mac802154/ieee802154_dev.c index 6af6a2427aaf..086d4a91ae45 100644 --- a/net/mac802154/ieee802154_dev.c +++ b/net/mac802154/ieee802154_dev.c @@ -263,7 +263,7 @@ ieee802154_alloc_device(size_t priv_data_len, struct ieee802154_ops *ops) * +-----------------------+ * * Due to ieee802154 layer isn't aware of driver and MAC structures, - * so lets allign them here. + * so lets align them here. */ priv_size = ALIGN(sizeof(*priv), NETDEV_ALIGN) + priv_data_len; |