diff options
author | Alexander Aring <alex.aring@gmail.com> | 2015-06-06 17:30:51 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-06-07 09:13:32 +0200 |
commit | af69a34548cb01aefef76aeb3565cebc7a9fb0d6 (patch) | |
tree | 46a2862976e43ccb97b5892b6b78f54352925854 /include/net | |
parent | 5661d431c6e65588e813c947117e6d18eb03422f (diff) | |
download | op-kernel-dev-af69a34548cb01aefef76aeb3565cebc7a9fb0d6.zip op-kernel-dev-af69a34548cb01aefef76aeb3565cebc7a9fb0d6.tar.gz |
mac802154: rearrange attribute in ieee802154_hw
This patch removes the priv attribute in ieee802154_hw to the right
section which is commented by attributes which needs to be filled by
driver layer.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Reviewed-by: Varka Bhadram <varkabhadram@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net')
-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 61d4b80..d8e9e6f 100644 --- a/include/net/mac802154.h +++ b/include/net/mac802154.h @@ -72,9 +72,9 @@ struct ieee802154_hw { int extra_tx_headroom; u32 flags; struct device *parent; + void *priv; /* filled by mac802154 core */ - void *priv; struct wpan_phy *phy; }; |