Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23297
b: refs/heads/master
c: 4c718cf
h: refs/heads/master
i:
  23295: 5aa4f19
v: v3
  • Loading branch information
Johannes Berg authored and John W. Linville committed Mar 23, 2006
1 parent f0f52e8 commit 06dab04
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9ebdd466813c2dde19417a00e22bd46546e27165
refs/heads/master: 4c718cfd7df4ac34ca8a4add555c374de61c42e8
15 changes: 7 additions & 8 deletions trunk/net/ieee80211/softmac/ieee80211softmac_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ struct net_device *alloc_ieee80211softmac(int sizeof_priv)

return dev;
}
EXPORT_SYMBOL_GPL(alloc_ieee80211softmac);

/* Clears the pending work queue items, stops all scans, etc. */
void
Expand Down Expand Up @@ -127,6 +128,7 @@ ieee80211softmac_clear_pending_work(struct ieee80211softmac_device *sm)

spin_unlock_irqrestore(&sm->lock, flags);
}
EXPORT_SYMBOL_GPL(ieee80211softmac_clear_pending_work);

void free_ieee80211softmac(struct net_device *dev)
{
Expand All @@ -136,6 +138,7 @@ void free_ieee80211softmac(struct net_device *dev)
kfree(sm->wpa.IE);
free_ieee80211(dev);
}
EXPORT_SYMBOL_GPL(free_ieee80211softmac);

static void ieee80211softmac_start_check_rates(struct ieee80211softmac_device *mac)
{
Expand Down Expand Up @@ -194,13 +197,15 @@ void ieee80211softmac_start(struct net_device *dev)
if (mac->txrates_change)
mac->txrates_change(dev, change, &oldrates);
}
EXPORT_SYMBOL_GPL(ieee80211softmac_start);

void ieee80211softmac_stop(struct net_device *dev)
{
struct ieee80211softmac_device *mac = ieee80211_priv(dev);

ieee80211softmac_clear_pending_work(mac);
}
EXPORT_SYMBOL_GPL(ieee80211softmac_stop);

void ieee80211softmac_set_rates(struct net_device *dev, u8 count, u8 *rates)
{
Expand All @@ -212,6 +217,7 @@ void ieee80211softmac_set_rates(struct net_device *dev, u8 count, u8 *rates)
mac->ratesinfo.count = count;
spin_unlock_irqrestore(&mac->lock, flags);
}
EXPORT_SYMBOL_GPL(ieee80211softmac_set_rates);

static u8 raise_rate(struct ieee80211softmac_device *mac, u8 rate)
{
Expand Down Expand Up @@ -294,6 +300,7 @@ void ieee80211softmac_fragment_lost(struct net_device *dev,

spin_unlock_irqrestore(&mac->lock, flags);
}
EXPORT_SYMBOL_GPL(ieee80211softmac_fragment_lost);

static int rate_cmp(const void *a_, const void *b_) {
u8 *a, *b;
Expand Down Expand Up @@ -447,11 +454,3 @@ MODULE_AUTHOR("Larry Finger");
MODULE_AUTHOR("Danny van Dyk");
MODULE_AUTHOR("Michael Buesch");
MODULE_DESCRIPTION("802.11 software MAC");

EXPORT_SYMBOL_GPL(alloc_ieee80211softmac);
EXPORT_SYMBOL_GPL(free_ieee80211softmac);
EXPORT_SYMBOL_GPL(ieee80211softmac_set_rates);
EXPORT_SYMBOL_GPL(ieee80211softmac_start);
EXPORT_SYMBOL_GPL(ieee80211softmac_stop);
EXPORT_SYMBOL_GPL(ieee80211softmac_fragment_lost);
EXPORT_SYMBOL_GPL(ieee80211softmac_clear_pending_work);

0 comments on commit 06dab04

Please sign in to comment.