aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/p54common.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-09-28 08:01:25 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:54:15 -0400
commita28975525016ddcbdaab8225666df1cf2dc9cb2d (patch)
tree5043b4c24c3c6c40d3d844259e2c47421204436d /drivers/net/wireless/p54common.c
parentf7c4daed99fba15e4e48df464031f4ac7c32e4c9 (diff)
[MAC80211]: add "invalid" interface type
Since I cannot convince the lazy driver authors (hello Michael) to stop (ab)using the MGMT interface type internally in their drivers, this patch introduces a new _INVALID type especially for their use and changes all affected drivers to use it. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/p54common.c')
-rw-r--r--drivers/net/wireless/p54common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/p54common.c b/drivers/net/wireless/p54common.c
index 9befd6cc7911..2c63cf0ad2cd 100644
--- a/drivers/net/wireless/p54common.c
+++ b/drivers/net/wireless/p54common.c
@@ -797,7 +797,7 @@ static void p54_stop(struct ieee80211_hw *dev)
797 kfree_skb(skb); 797 kfree_skb(skb);
798 } 798 }
799 priv->stop(dev); 799 priv->stop(dev);
800 priv->mode = IEEE80211_IF_TYPE_MGMT; 800 priv->mode = IEEE80211_IF_TYPE_INVALID;
801} 801}
802 802
803static int p54_add_interface(struct ieee80211_hw *dev, 803static int p54_add_interface(struct ieee80211_hw *dev,
@@ -949,7 +949,7 @@ struct ieee80211_hw *p54_init_common(size_t priv_data_len)
949 return NULL; 949 return NULL;
950 950
951 priv = dev->priv; 951 priv = dev->priv;
952 priv->mode = IEEE80211_IF_TYPE_MGMT; 952 priv->mode = IEEE80211_IF_TYPE_INVALID;
953 skb_queue_head_init(&priv->tx_queue); 953 skb_queue_head_init(&priv->tx_queue);
954 memcpy(priv->channels, p54_channels, sizeof(p54_channels)); 954 memcpy(priv->channels, p54_channels, sizeof(p54_channels));
955 memcpy(priv->rates, p54_rates, sizeof(p54_rates)); 955 memcpy(priv->rates, p54_rates, sizeof(p54_rates));