Return-path: Received: from wolverine01.qualcomm.com ([199.106.114.254]:6225 "EHLO wolverine01.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756527Ab2IEFuD (ORCPT ); Wed, 5 Sep 2012 01:50:03 -0400 From: Vasanthakumar Thiagarajan To: , CC: Subject: [RFC V2 1/2] cfg80211: Move the definition of struct mac_address up Date: Wed, 5 Sep 2012 11:18:29 +0530 Message-ID: <1346824110-26382-1-git-send-email-vthiagar@qca.qualcomm.com> (sfid-20120905_075015_495337_6E407ADB) MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: struct mac_address will be used by ACL related configuration ops. Signed-off-by: Vasanthakumar Thiagarajan --- include/net/cfg80211.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index ba2e616..fd78d38 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -1415,6 +1415,10 @@ struct cfg80211_gtk_rekey_data { u8 replay_ctr[NL80211_REPLAY_CTR_LEN]; }; +struct mac_address { + u8 addr[ETH_ALEN]; +}; + /** * struct cfg80211_ops - backend description for wireless configuration * @@ -2006,10 +2010,6 @@ struct ieee80211_iface_combination { bool beacon_int_infra_match; }; -struct mac_address { - u8 addr[ETH_ALEN]; -}; - struct ieee80211_txrx_stypes { u16 tx, rx; }; -- 1.7.0.4